blob: 6579fe9fc7bda96f34a469a14ce1795014d3d09a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
pkgconfig,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "uharfbuzz";
version = "0.51.1";
pyproject = true;
src = fetchFromGitHub {
owner = "harfbuzz";
repo = "uharfbuzz";
tag = "v${version}";
fetchSubmodules = true;
hash = "sha256-mVxG0unTjMjb0/6w58Py+TARw8YmOWljTlQQwUEdMpg=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools >= 36.4, < 72.2" setuptools
'';
build-system = [
cython
pkgconfig
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "uharfbuzz" ];
meta = {
description = "Streamlined Cython bindings for the harfbuzz shaping engine";
homepage = "https://github.com/harfbuzz/uharfbuzz";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|