depot/third_party/nixpkgs/pkgs/development/python-modules/vharfbuzz/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

34 lines
691 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
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
];
# 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 ];
};
}