blob: 33b619b0ebf837596909c07b8e07dc8e0fd36f9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
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 = {
description = "HTTP/2 framing layer for Python";
homepage = "https://github.com/python-hyper/hyperframe/";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|