python.pkgs.limits: init at 1.2.1
This commit is contained in:
parent
92e535d3f1
commit
12ff860380
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/;
|
||||||
|
};
|
||||||
|
}
|
@ -9841,6 +9841,8 @@ in {
|
|||||||
libxslt = disabledIf isPy3k
|
libxslt = disabledIf isPy3k
|
||||||
(toPythonModule (pkgs.libxslt.override{pythonSupport=true; python2=python; inherit (self) libxml2;})).py;
|
(toPythonModule (pkgs.libxslt.override{pythonSupport=true; python2=python; inherit (self) libxml2;})).py;
|
||||||
|
|
||||||
|
limits = callPackage ../development/python-modules/limits { };
|
||||||
|
|
||||||
limnoria = buildPythonPackage rec {
|
limnoria = buildPythonPackage rec {
|
||||||
name = "limnoria-${version}";
|
name = "limnoria-${version}";
|
||||||
version = "2016.05.06";
|
version = "2016.05.06";
|
||||||
|
Loading…
Reference in New Issue
Block a user