depot/third_party/nixpkgs/pkgs/development/python-modules/limiter/default.nix
Default email 14910f5943 Project import generated by Copybara.
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
2022-01-13 15:06:32 -05:00

44 lines
921 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, token-bucket
}:
buildPythonPackage rec {
pname = "limiter";
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "alexdelorenzo";
repo = pname;
rev = "v${version}";
hash = "sha256-h3XiCR/8rcCBwdhO6ExrrUE9piba5mssad3+t41scSk=";
};
propagatedBuildInputs = [
token-bucket
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "token-bucket==0.2.0" "token-bucket>=0.2.0"
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"limiter"
];
meta = with lib; {
description = "Python rate-limiting, thread-safe and asynchronous decorators and context managers";
homepage = "https://github.com/alexdelorenzo/limiter";
license = with licenses; [ agpl3Only ];
maintainers = with maintainers; [ fab ];
};
}