aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/h2/default.nix
blob: 7597abbe0f9e1d3fa91f7f9cbb76fc0b4b47ac1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi
, enum34, hpack, hyperframe, pytestCheckHook, hypothesis }:

buildPythonPackage rec {
  pname = "h2";
  version = "4.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bb7ac7099dd67a857ed52c815a6192b6b1f5ba6b516237fc24a085341340593d";
  };

  propagatedBuildInputs = [ enum34 hpack hyperframe ];

  checkInputs = [ pytestCheckHook hypothesis ];

  meta = with stdenv.lib; {
    description = "HTTP/2 State-Machine based protocol implementation";
    homepage = "http://hyper.rtfd.org/";
    license = licenses.mit;
  };
}