nixpkgs/pkgs/development/python-modules/hyperframe/default.nix

20 lines
451 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
2020-11-29 18:36:13 +00:00
2017-11-02 23:32:49 +00:00
buildPythonPackage rec {
pname = "hyperframe";
version = "6.0.0";
2017-11-02 23:32:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1";
2017-11-02 23:32:49 +00:00
};
2020-11-29 18:36:13 +00:00
checkInputs = [ pytestCheckHook ];
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;
};
}