ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / priority / default.nix
blob16908e90c9e66ead177ea5fe0783abe632bdc0f5
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , hypothesis
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "priority";
11   version = "2.0.0";
12   format = "setuptools";
13   disabled = pythonOlder "3.6.1";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "c965d54f1b8d0d0b19479db3924c7c36cf672dbf2aec92d43fbdaf4492ba18c0";
18   };
20   pythonImportsCheck = [
21      "priority"
22   ];
24   checkInputs = [
25     hypothesis
26     pytestCheckHook
27   ];
29   meta = with lib; {
30     description = "A pure-Python implementation of the HTTP/2 priority tree";
31     homepage = "https://github.com/python-hyper/priority/";
32     license = licenses.mit;
33     maintainers = with maintainers; [ qyliss ];
34   };