about summary refs log tree commit diff
path: root/pkgs/development/python-modules/limits/default.nix
blob: 57f47ff5fd829994da07d18f351a6e3c83e71933 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchPypi, buildPythonPackage, six }:

buildPythonPackage rec {
  pname = "limits";
  version = "1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a017b8d9e9da6761f4574642149c337f8f540d4edfe573fb91ad2c4001a2bc76";
  };

  propagatedBuildInputs = [ six ];

  doCheck = false; # ifilter

  meta = with stdenv.lib; {
    description = "Rate limiting utilities";
    license = licenses.mit;
    homepage = https://limits.readthedocs.org/;
  };
}