Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / hyperframe / default.nix
blob6cdee9948b918e62bec13d9e1f268fceba685bbb
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "hyperframe";
5   version = "6.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1";
10   };
12   checkInputs = [ pytestCheckHook ];
14   meta = with lib; {
15     description = "HTTP/2 framing layer for Python";
16     homepage = "http://hyper.rtfd.org/";
17     license = licenses.mit;
18   };