Merge pull request #165392 from SuperSandro2000/h11

This commit is contained in:
Sandro
2022-03-26 15:12:59 +01:00
committed by GitHub
@@ -2,11 +2,13 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "h11";
version = "0.13.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
@@ -22,5 +24,6 @@ buildPythonPackage rec {
description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1";
homepage = "https://github.com/python-hyper/h11";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}