pythonPackages.h11: init at 0.7.0

This commit is contained in:
Franz Pletz 2018-03-05 17:17:29 +01:00
parent cda1e6c21b
commit 92cbfd8555
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "h11";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1n9hsm1n2qq32j3hh9wj93w738bwa5nqyzxjwvirz03gp8fbn3qw";
};
buildInputs = [ pytest ];
meta = with lib; {
description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1";
license = licenses.mit;
};
}

View File

@ -21268,6 +21268,8 @@ EOF
pysigset = callPackage ../development/python-modules/pysigset { };
us = callPackage ../development/python-modules/us { };
h11 = callPackage ../development/python-modules/h11 { };
});
in fix' (extends overrides packages)