python3Packages.uharfbuzz: fix on Darwin
This commit is contained in:
parent
e2c261f2c0
commit
d0177347d8
@ -6,6 +6,7 @@
|
|||||||
, cython
|
, cython
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -31,6 +32,10 @@ buildPythonPackage rec {
|
|||||||
setuptools-scm
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
ApplicationServices
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
@ -42,6 +47,5 @@ buildPythonPackage rec {
|
|||||||
homepage = "https://github.com/harfbuzz/uharfbuzz";
|
homepage = "https://github.com/harfbuzz/uharfbuzz";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ wolfangaukang ];
|
maintainers = with maintainers; [ wolfangaukang ];
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10843,7 +10843,9 @@ in {
|
|||||||
|
|
||||||
ueagle = callPackage ../development/python-modules/ueagle { };
|
ueagle = callPackage ../development/python-modules/ueagle { };
|
||||||
|
|
||||||
uharfbuzz = callPackage ../development/python-modules/uharfbuzz { };
|
uharfbuzz = callPackage ../development/python-modules/uharfbuzz {
|
||||||
|
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
|
};
|
||||||
|
|
||||||
ujson = callPackage ../development/python-modules/ujson { };
|
ujson = callPackage ../development/python-modules/ujson { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user