ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hpack / default.nix
blob842c6d5f8bfcb31c31e12cf5eb6034f5455432af
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , hypothesis
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "hpack";
11   version = "4.0.0";
12   disabled = pythonOlder "3.6";
14   src = fetchFromGitHub {
15     owner = "python-hyper";
16     repo = "hpack";
17     rev = "v${version}";
18     sha256 = "sha256-2CehGy3K5fKbkB1J8+8x1D4XvnBn1Mbapx+p8rdXDYc=";
19   };
21   checkInputs = [
22     hypothesis
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [ "hpack" ];
28   meta = with lib; {
29     description = "Pure-Python HPACK header compression";
30     homepage = "https://github.com/python-hyper/hpack";
31     license = licenses.mit;
32     maintainers = with maintainers; [ SuperSandro2000 ];
33   };