mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
22 lines
474 B
Nix
22 lines
474 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "limits";
|
|
version = "1.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f0c3319f032c4bfad68438ed1325c0fac86dac64582c7c25cddc87a0b658fa20";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
doCheck = false; # ifilter
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Rate limiting utilities";
|
|
license = licenses.mit;
|
|
homepage = "https://limits.readthedocs.org/";
|
|
};
|
|
}
|