python3Packages.zopfli: link against our zopfli instead of vendoring
https://github.com/fonttools/py-zopfli/pull/9
This commit is contained in:
parent
074a88834a
commit
51dd267335
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytest }:
|
||||
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, zopfli, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zopfli";
|
||||
@ -12,6 +12,9 @@ buildPythonPackage rec {
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
buildInputs = [ zopfli ];
|
||||
USE_SYSTEM_ZOPFLI = "True";
|
||||
|
||||
# doesn't work with pytestCheckHook
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
|
@ -10079,7 +10079,9 @@ in {
|
||||
|
||||
zope_testrunner = callPackage ../development/python-modules/zope_testrunner { };
|
||||
|
||||
zopfli = callPackage ../development/python-modules/zopfli { };
|
||||
zopfli = callPackage ../development/python-modules/zopfli {
|
||||
inherit (pkgs) zopfli;
|
||||
};
|
||||
|
||||
zstandard = callPackage ../development/python-modules/zstandard { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user