1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/pkgs/development/python-modules/limits/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
464 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, six }:
2018-01-20 11:49:34 +01:00
buildPythonPackage rec {
pname = "limits";
2022-01-13 16:58:31 -08:00
version = "2.2.0";
2018-01-20 11:49:34 +01:00
src = fetchPypi {
inherit pname version;
2022-01-13 16:58:31 -08:00
sha256 = "da6346f0dcf85f17f0f1cc709c3408a3058cf6fee68313c288127c287237b411";
2018-01-20 11:49:34 +01:00
};
propagatedBuildInputs = [ six ];
doCheck = false; # ifilter
meta = with lib; {
2018-01-20 11:49:34 +01:00
description = "Rate limiting utilities";
license = licenses.mit;
homepage = "https://limits.readthedocs.org/";
2018-01-20 11:49:34 +01:00
};
}