about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hpack/default.nix
blob: 9b6f724cd3188c3dbe73be8adb5bb1f466e9830b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "hpack";
  version = "4.0.0";

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

  meta = with lib; {
    description = "Pure-Python HPACK header compression";
    homepage = "http://hyper.rtfd.org";
    license = licenses.mit;
  };

}