about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ratelimit/default.nix
blob: 7a1af77df0e26c953aa6c3d5dcc1b6836abcbae3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "ratelimit";
  version = "2.2.1";

  src = fetchFromGitHub {
    owner = "tomasbasham";
    repo = pname;
    rev = "v${version}";
    sha256 = "04hy3hhh5xdqcsz0lx8j18zbj88kh5ik4wyi5d3a5sfy2hx70in2";
  };

  postPatch = ''
    sed -i "/--cov/d" pytest.ini
  '';

  nativeCheckInputs = [ pytestCheckHook ];

  pytestFlagsArray = [ "tests" ];

  pythonImportsCheck = [ "ratelimit" ];

  meta = with lib; {
    description = "Python API Rate Limit Decorator";
    homepage = "https://github.com/tomasbasham/ratelimit";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}