python3Packages.hypercorn: 0.11.2 -> 0.13.2

This commit is contained in:
Jonathan Ringer
2022-02-06 10:52:32 -08:00
parent e12328c7b7
commit 8f6ad6abdc
@@ -8,6 +8,7 @@
, h2
, priority
, mock
, poetry-core
, pytest-asyncio
, pytest-cov
, pytest-sugar
@@ -17,16 +18,21 @@
buildPythonPackage rec {
pname = "Hypercorn";
version = "0.11.2";
version = "0.13.2";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchFromGitLab {
owner = "pgjones";
repo = pname;
rev = version;
sha256 = "0v80v6l2xqac5mgrmh2im7y23wpvz4yc2v4h9ryhvl88c2jk9mvh";
sha256 = "sha256-fIjw5A6SvFUv8cU7xunVlPYphv+glypY4pzvHNifYLQ=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ wsproto toml h2 priority ]
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];