Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 501 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, enum34, hpack, hyperframe }: 3 4buildPythonPackage rec { 5 pname = "h2"; 6 version = "3.1.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "fd07e865a3272ac6ef195d8904de92dc7b38dc28297ec39cfa22716b6d62e6eb"; 11 }; 12 13 propagatedBuildInputs = [ enum34 hpack hyperframe ]; 14 15 meta = with stdenv.lib; { 16 description = "HTTP/2 State-Machine based protocol implementation"; 17 homepage = "http://hyper.rtfd.org/"; 18 license = licenses.mit; 19 }; 20}