nixpkgs/pkgs/development/python-modules/limits/default.nix

22 lines
470 B
Nix
Raw Normal View History

2018-01-20 10:49:34 +00:00
{ stdenv, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "limits";
2018-02-03 09:52:56 +00:00
version = "1.3";
2018-01-20 10:49:34 +00:00
src = fetchPypi {
inherit pname version;
2018-02-03 09:52:56 +00:00
sha256 = "a017b8d9e9da6761f4574642149c337f8f540d4edfe573fb91ad2c4001a2bc76";
2018-01-20 10:49:34 +00:00
};
propagatedBuildInputs = [ six ];
doCheck = false; # ifilter
meta = with stdenv.lib; {
description = "Rate limiting utilities";
license = licenses.mit;
homepage = https://limits.readthedocs.org/;
};
}