Martin Weinelt 3c8f29bb94
python3Packages.hyperframe: 6.0.1 -> 6.1.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:28 +02:00

32 lines
605 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "hyperframe";
version = "6.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9jCQigCFSnreq9Y4K0OSOkxM1Lgh/LUn5queFTgqOwg=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "hyperframe" ];
meta = with lib; {
description = "HTTP/2 framing layer for Python";
homepage = "https://github.com/python-hyper/hyperframe/";
license = licenses.mit;
maintainers = [ ];
};
}