pythonPackages.h2: init at 2.5.1

This commit is contained in:
Franz Pletz 2017-01-04 09:15:27 +01:00
parent cde1874b15
commit e7ee0264f9
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -14694,6 +14694,24 @@ in {
};
};
h2 = buildPythonPackage rec {
name = "h2-${version}";
version = "2.5.1";
src = pkgs.fetchurl {
url = "mirror://pypi/h/h2/${name}.tar.gz";
sha256 = "0xhzm5vcfhdq3mihynwh4ljwi0r06lvzk3ypr0gmmbcp1x43ffb7";
};
propagatedBuildInputs = with self; [ enum34 hpack hyperframe ];
meta = {
description = "HTTP/2 State-Machine based protocol implementation";
homepage = "http://hyper.rtfd.org/";
license = licenses.mit;
};
};
mitmproxy = buildPythonPackage rec {
baseName = "mitmproxy";
name = "${baseName}-${version}";