Merge pull request #129843 from dgliwka/ratelim

This commit is contained in:
Sandro 2021-07-14 03:05:41 +02:00 committed by GitHub
commit 747db8b7fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, decorator
}:
buildPythonPackage rec {
pname = "ratelim";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "07dirdd8y23706110nb0lfz5pzbrcvd9y74h64la3y8igqbk4vc2";
};
propagatedBuildInputs = [
decorator
];
pythonImportsCheck = [ "ratelim" ];
# package has no tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/themiurgo/ratelim";
description = "Simple Python library that limits the number of times a function can be called during a time interval";
license = licenses.mit;
maintainers = with maintainers; [ dgliwka ];
};
}

View file

@ -7430,6 +7430,8 @@ in {
gdal = pkgs.gdal_2;
};
ratelim = callPackage ../development/python-modules/ratelim { };
ratelimit = callPackage ../development/python-modules/ratelimit { };
ratelimiter = callPackage ../development/python-modules/ratelimiter { };