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

22 lines
474 B
Nix
Raw Normal View History

2018-01-20 10:49:34 +00:00
{ stdenv, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "limits";
2020-06-06 06:47:17 +00:00
version = "1.5.1";
2018-01-20 10:49:34 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:17 +00:00
sha256 = "f0c3319f032c4bfad68438ed1325c0fac86dac64582c7c25cddc87a0b658fa20";
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/";
2018-01-20 10:49:34 +00:00
};
}