e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
46 lines
935 B
Nix
46 lines
935 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, cython
|
|
, setuptools-scm
|
|
, pytestCheckHook
|
|
, ApplicationServices
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uharfbuzz";
|
|
version = "0.37.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "harfbuzz";
|
|
repo = "uharfbuzz";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-876gFYyMqeGYoXMdBguV6bi7DJKHJs9HNLw9xRu+Mxk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
setuptools-scm
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ ApplicationServices ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "uharfbuzz" ];
|
|
|
|
meta = with lib; {
|
|
description = "Streamlined Cython bindings for the harfbuzz shaping engine";
|
|
homepage = "https://github.com/harfbuzz/uharfbuzz";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|