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

22 lines
408 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "hpack";
2018-11-04 10:35:02 +00:00
version = "3.0.0";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:02 +00:00
sha256 = "8eec9c1f4bfae3408a3f30500261f7e6a65912dc138526ea054f9ad98892e9d2";
};
meta = with stdenv.lib; {
description = "Pure-Python HPACK header compression";
homepage = "http://hyper.rtfd.org";
license = licenses.mit;
};
}