aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/hyperframe/default.nix
blob: a8f847c53bb111046d911f67736e1771acf5f0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "hyperframe";
  version = "5.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a9f5c17f2cc3c719b917c4f33ed1c61bd1f8dfac4b1bd23b7c80b3400971b41f";
  };

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