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