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