2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
2020-11-29 19:36:13 +01:00
|
|
|
|
2017-11-03 00:32:49 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hyperframe";
|
2020-11-29 15:04:31 +01:00
|
|
|
version = "6.0.0";
|
2017-11-03 00:32:49 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 15:04:31 +01:00
|
|
|
sha256 = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1";
|
2017-11-03 00:32:49 +01:00
|
|
|
};
|
|
|
|
|
2020-11-29 19:36:13 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-11-03 00:32:49 +01:00
|
|
|
description = "HTTP/2 framing layer for Python";
|
|
|
|
homepage = "http://hyper.rtfd.org/";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|