2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
2020-11-29 18:36:13 +00:00
|
|
|
|
2017-11-02 23:32:49 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hyperframe";
|
2021-06-18 21:47:22 +00:00
|
|
|
version = "6.0.1";
|
2017-11-02 23:32:49 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 21:47:22 +00:00
|
|
|
sha256 = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914";
|
2017-11-02 23:32:49 +00:00
|
|
|
};
|
|
|
|
|
2020-11-29 18:36:13 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-02 23:32:49 +00:00
|
|
|
description = "HTTP/2 framing layer for Python";
|
|
|
|
homepage = "http://hyper.rtfd.org/";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|