summary refs log tree commit diff
path: root/pkgs/development/python-modules/ratelimiter/default.nix
blob: fc51e1488d6a81a471957e5d022315905ed42424 (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
35
{
  lib
, buildPythonPackage
, fetchPypi
, pytest
, glibcLocales
}:

buildPythonPackage rec {
  pname = "ratelimiter";
  version = "1.2.0.post0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5c395dcabdbbde2e5178ef3f89b568a3066454a6ddc223b76473dac22f89b4f7";
  };

  LC_ALL = "en_US.utf-8";

  nativeBuildInputs = [ glibcLocales ];

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test tests
  '';

  meta = with lib; {
    homepage = "https://github.com/RazerM/ratelimiter";
    license = licenses.asl20;
    description = "Simple python rate limiting object";
    maintainers = with maintainers; [ helkafen ];
  };
}