blob: 97fc966ce9844c1ea96f71c5916ccf8c1c744952 (
about) (
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 = with lib; {
description = "HTTP/2 framing layer for Python";
homepage = "https://github.com/python-hyper/hyperframe/";
license = licenses.mit;
maintainers = [ ];
};
}
|