ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aiostream / default.nix
blob7b7ff75614de603253b405056dd6c4d6f8eec00e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pytestCheckHook
6 , pytest-cov
7 , pytest-asyncio
8 }:
10 buildPythonPackage rec {
11   pname = "aiostream";
12   version = "0.4.5";
13   disabled = pythonOlder "3.6";
15   src = fetchFromGitHub {
16     owner = "vxgmichel";
17     repo = pname;
18     rev = "refs/tags/v${version}";
19     sha256 = "sha256-WOtscg02Dq5YNSAfq4pIyH3oUP/5G+cjBwKB6c+SUVA=";
20   };
22   checkInputs = [ pytestCheckHook pytest-cov pytest-asyncio ];
24   meta = with lib; {
25     description = "Generator-based operators for asynchronous iteration";
26     homepage = "https://aiostream.readthedocs.io";
27     license = licenses.gpl3Only;
28     maintainers = [ maintainers.rmcgibbo ];
29   };