mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
102 lines
1.8 KiB
Nix
102 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
setuptools-scm,
|
|
resvg,
|
|
pngquant,
|
|
absl-py,
|
|
fonttools,
|
|
lxml,
|
|
ninja,
|
|
picosvg,
|
|
pillow,
|
|
regex,
|
|
toml,
|
|
tomlkit,
|
|
ufo2ft,
|
|
ufolib2,
|
|
zopfli,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nanoemoji";
|
|
version = "0.15.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlefonts";
|
|
repo = "nanoemoji";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-P/lT0PnjTdYzyttICzszu4OL5kj+X8GHZ8doL3tpXQM=";
|
|
};
|
|
|
|
patches = [
|
|
# this is necessary because the tests clear PATH/PYTHONPATH otherwise
|
|
./test-pythonpath.patch
|
|
# minor difference in the test output, most likely due to different dependency versions
|
|
./fix-test.patch
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pngquant
|
|
resvg
|
|
];
|
|
|
|
# these two packages are just prebuilt wheels containing the respective binaries
|
|
pythonRemoveDeps = [
|
|
"pngquant-cli"
|
|
"resvg-cli"
|
|
];
|
|
|
|
dependencies = [
|
|
absl-py
|
|
fonttools
|
|
lxml
|
|
ninja
|
|
picosvg
|
|
pillow
|
|
regex
|
|
toml
|
|
tomlkit
|
|
ufo2ft
|
|
ufolib2
|
|
zopfli
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
ninja
|
|
picosvg
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
pngquant
|
|
resvg
|
|
]
|
|
}"
|
|
];
|
|
|
|
preCheck = ''
|
|
# make sure the built binaries (nanoemoji/maximum_color) can be found by the test
|
|
export PATH="$out/bin:$PATH"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Wee tool to build color fonts";
|
|
homepage = "https://github.com/googlefonts/nanoemoji";
|
|
changelog = "https://github.com/googlefonts/nanoemoji/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ _999eagle ];
|
|
};
|
|
}
|