pythonPackages.brotlipy: init at 0.6.0

This commit is contained in:
Franz Pletz 2017-01-04 09:13:46 +01:00
parent 838862cb42
commit 956a400b81
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -14640,6 +14640,23 @@ in {
};
};
brotlipy = buildPythonPackage rec {
name = "brotlipy-${version}";
version = "0.6.0";
src = pkgs.fetchurl {
url = "mirror://pypi/b/brotlipy/${name}.tar.gz";
sha256 = "10s2y19zywfkf3sksrw81czhva759aki0clld2pnnlgf64sz7016";
};
propagatedBuildInputs = with self; [ cffi enum34 construct ];
meta = {
description = "Python bindings for the reference Brotli encoder/decoder";
homepage = "https://github.com/python-hyper/brotlipy/";
license = licenses.mit;
};
};
mitmproxy = buildPythonPackage rec {
baseName = "mitmproxy";