1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "hyperframe";
11 version = "6.1.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-9jCQigCFSnreq9Y4K0OSOkxM1Lgh/LUn5queFTgqOwg=";
17 };
18
19 build-system = [ setuptools ];
20
21 nativeCheckInputs = [ pytestCheckHook ];
22
23 pythonImportsCheck = [ "hyperframe" ];
24
25 meta = with lib; {
26 description = "HTTP/2 framing layer for Python";
27 homepage = "https://github.com/python-hyper/hyperframe/";
28 license = licenses.mit;
29 maintainers = [ ];
30 };
31}