python39Packages.h11: disable on pythons older than 3.6, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2022-03-23 07:57:22 +01:00
parent cd64f8e8b3
commit be07e4c1e2
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -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 ];
};
}