about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/throttler/default.nix
blob: dea390403592a0cd3800663a2eecdeca6a770540 (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
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, aiohttp
, codecov
, flake8
, pytest
, pytest-asyncio
, pytest-cov
}:

buildPythonPackage rec {
  pname = "throttler";
  version = "1.2.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "uburuntu";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-fE35zPjBUn4e1VRkkIUMtYJ/+LbnUxnxyfnU+UEPwr4=";
  };

  checkInputs = [
    aiohttp
    codecov
    flake8
    pytest
    pytest-asyncio
    pytest-cov
    pytestCheckHook
  ];

  pytestFlagsArray = [ "tests/" ];

  meta = with lib; {
    description = "Zero-dependency Python package for easy throttling with asyncio support.";
    homepage = "https://github.com/uburuntu/throttler";
    license = licenses.mit;
    maintainers = with maintainers; [ renatoGarcia ];
  };
}