python.pkgs.limits: init at 1.2.1
This commit is contained in:
21
pkgs/development/python-modules/limits/default.nix
Normal file
21
pkgs/development/python-modules/limits/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "limits";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0dfbrmqixsvhvzqgd4s8rfj933k1w5q4bm23pp9zyp70xlb0mfmd";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
doCheck = false; # ifilter
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Rate limiting utilities";
|
||||
license = licenses.mit;
|
||||
homepage = https://limits.readthedocs.org/;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user