My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/limits/default.nix

22 lines
472 B

{ stdenv, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "limits";
version = "1.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "c071295307c447f85aaa3c3ab3ce058e29d67010f4fabf278a8e163916e4deab";
};
propagatedBuildInputs = [ six ];
doCheck = false; # ifilter
meta = with stdenv.lib; {
description = "Rate limiting utilities";
license = licenses.mit;
homepage = https://limits.readthedocs.org/;
};
}