mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
489 B
Nix
21 lines
489 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi
|
||
|
, enum34, hpack, hyperframe }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "h2";
|
||
|
version = "3.0.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0r3f43r0v7sqgdjjg5ngw0dndk2v6cyd0jncpwya54m37y42z5mj";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ enum34 hpack hyperframe ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "HTTP/2 State-Machine based protocol implementation";
|
||
|
homepage = "http://hyper.rtfd.org/";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|