ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aiojobs / default.nix
blob0ae7c3e8a06cc144a6dc20302cec5392cbb8abe6
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , aiohttp
6 , pytestCheckHook
7 , pytest-aiohttp
8 , pygments
9 }:
11 buildPythonPackage rec {
12   pname = "aiojobs";
13   version = "1.0.0";
14   format = "flit";
16   disabled = pythonOlder "3.6";
18   src = fetchFromGitHub {
19     owner = "aio-libs";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "EQwD0b2B9qFVd/8thKInaio0hpPzvVIjvCN0TcARu2w=";
23   };
25   nativeBuildInputs = [
26     pygments
27   ];
29   propagatedBuildInputs = [
30     aiohttp
31   ];
33   checkInputs = [
34     pytestCheckHook
35     pytest-aiohttp
36   ];
38   pythonImportsCheck = [
39     "aiojobs"
40   ];
42   meta = with lib; {
43     description = "Jobs scheduler for managing background task (asyncio)";
44     homepage = "https://github.com/aio-libs/aiojobs";
45     license = licenses.asl20;
46     maintainers = with maintainers; [ cmcdragonkai ];
47   };