2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchPypi, buildPythonPackage, six }:
|
2018-01-20 10:49:34 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "limits";
|
2020-06-06 07:47:17 +01:00
|
|
|
version = "1.5.1";
|
2018-01-20 10:49:34 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:17 +01:00
|
|
|
sha256 = "f0c3319f032c4bfad68438ed1325c0fac86dac64582c7c25cddc87a0b658fa20";
|
2018-01-20 10:49:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
doCheck = false; # ifilter
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-20 10:49:34 +00:00
|
|
|
description = "Rate limiting utilities";
|
|
|
|
license = licenses.mit;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://limits.readthedocs.org/";
|
2018-01-20 10:49:34 +00:00
|
|
|
};
|
|
|
|
}
|