aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/hyperframe/default.nix
blob: 2c6796ca6d0caf808d73bfd8e5181ffda3958341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook }:

buildPythonPackage rec {
  pname = "hyperframe";
  version = "6.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1";
  };

  checkInputs = [ pytestCheckHook ];

  meta = with stdenv.lib; {
    description = "HTTP/2 framing layer for Python";
    homepage = "http://hyper.rtfd.org/";
    license = licenses.mit;
  };
}