python.pkgs.limits: init at 1.2.1

This commit is contained in:
Frederik Rietdijk 2018-01-20 11:49:34 +01:00
parent 92e535d3f1
commit 12ff860380
2 changed files with 23 additions and 0 deletions

View 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/;
};
}

View file

@ -9841,6 +9841,8 @@ in {
libxslt = disabledIf isPy3k
(toPythonModule (pkgs.libxslt.override{pythonSupport=true; python2=python; inherit (self) libxml2;})).py;
limits = callPackage ../development/python-modules/limits { };
limnoria = buildPythonPackage rec {
name = "limnoria-${version}";
version = "2016.05.06";