depot/third_party/nixpkgs/pkgs/development/python-modules/h2/default.nix
Default email 78efc47b99 Project import generated by Copybara.
GitOrigin-RevId: 83cbad92d73216bb0d9187c56cce0b91f9121d5a
2020-12-07 07:45:13 +00:00

22 lines
579 B
Nix

{ 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;
};
}