python310Packages.aioquic: init at 0.9.20

This commit is contained in:
Jonas Heinrich
2022-09-01 14:57:05 +02:00
parent 3149b6ff31
commit e8995b4f16
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{ lib
, fetchPypi
, buildPythonPackage
, openssl
, pylsqpack
, certifi
, pytestCheckHook
, pyopenssl
}:
buildPythonPackage rec {
pname = "aioquic";
version = "0.9.20";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7ENqqs6Ze4RrAeUgDtv34+VrkYJqFE77l0j9jd0zK74=";
};
propagatedBuildInputs = [
certifi
pylsqpack
pyopenssl
];
buildInputs = [ openssl ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "aioquic" ];
meta = with lib; {
description = "Implementation of QUIC and HTTP/3";
homepage = "https://github.com/aiortc/aioquic";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}
+2
View File
@@ -410,6 +410,8 @@ in {
aioqsw = callPackage ../development/python-modules/aioqsw { };
aioquic = callPackage ../development/python-modules/aioquic { };
aiorecollect = callPackage ../development/python-modules/aiorecollect { };
aioredis = callPackage ../development/python-modules/aioredis { };