Files
nixpkgs/pkgs/development/python-modules/aioquic/default.nix
T
Martin Weinelt f75852c4b4 python3Packages.aioquic: 1.2.0 -> 1.3.0
This commit was automatically generated using update-python-libraries.
2026-02-01 16:40:56 +01:00

50 lines
870 B
Nix

{
lib,
buildPythonPackage,
certifi,
cryptography,
fetchPypi,
openssl,
pylsqpack,
pyopenssl,
pytestCheckHook,
setuptools,
service-identity,
}:
buildPythonPackage rec {
pname = "aioquic";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KNBwshg+PnmvqdTnvVWJYNDVOuuYvAzwo1iyebp5fJI=";
};
build-system = [ setuptools ];
dependencies = [
certifi
cryptography
pylsqpack
pyopenssl
service-identity
];
buildInputs = [ openssl ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "aioquic" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "Implementation of QUIC and HTTP/3";
homepage = "https://github.com/aiortc/aioquic";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ onny ];
};
}