Merge pull request #131896 from fabaff/brotlicffi

python3Packages.brotlicffi: init at 1.0.9.2
This commit is contained in:
Ben Siraphob 2021-07-31 13:57:34 +07:00 committed by GitHub
commit 60704a29f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, cffi
, brotli
}:
buildPythonPackage rec {
pname = "brotlicffi";
version = "1.0.9.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "python-hyper";
repo = pname;
rev = "v${version}";
sha256 = "0qx7an7772brmx1rbbrqzqnkqqvicc70mx740nl31kzzyv4jjs00";
};
buildInputs = [
brotli
];
propagatedBuildInputs = [
cffi
];
preBuild = ''
export USE_SHARED_BROTLI=1
'';
# Test data is not available, only when using libbortli git checkout
doCheck = false;
pythonImportsCheck = [ "brotlicffi" ];
meta = with lib; {
description = "Python CFFI bindings to the Brotli library";
homepage = "https://github.com/python-hyper/brotlicffi";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1212,6 +1212,10 @@ in {
brotli = callPackage ../development/python-modules/brotli { };
brotlicffi = callPackage ../development/python-modules/brotlicffi {
inherit (pkgs) brotli;
};
brotlipy = callPackage ../development/python-modules/brotlipy { };
brottsplatskartan = callPackage ../development/python-modules/brottsplatskartan { };