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

27 lines
483 B
Nix
Raw Normal View History

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