depot/third_party/nixpkgs/pkgs/development/python-modules/vharfbuzz/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

36 lines
767 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
pythonImportsCheckHook,
uharfbuzz,
}:
buildPythonPackage rec {
pname = "vharfbuzz";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bBKmVvLuc/CtQF+TSri8ngglnj4QCh77FV+JHPzsFAI=";
};
propagatedBuildInputs = [
fonttools
uharfbuzz
];
nativeBuildInputs = [ pythonImportsCheckHook ];
# Package has no tests.
doCheck = false;
pythonImportsCheck = [ "vharfbuzz" ];
meta = with lib; {
description = "Utility for removing hinting data from TrueType and OpenType fonts";
homepage = "https://github.com/source-foundry/dehinter";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}