biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / vharfbuzz / default.nix
blobe822dacb633a1e3f81bbb884a607d66e6ccc98c8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   fonttools,
6   uharfbuzz,
7 }:
9 buildPythonPackage rec {
10   pname = "vharfbuzz";
11   version = "0.3.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-bBKmVvLuc/CtQF+TSri8ngglnj4QCh77FV+JHPzsFAI=";
17   };
19   propagatedBuildInputs = [
20     fonttools
21     uharfbuzz
22   ];
24   # Package has no tests.
25   doCheck = false;
26   pythonImportsCheck = [ "vharfbuzz" ];
28   meta = with lib; {
29     description = "Utility for removing hinting data from TrueType and OpenType fonts";
30     homepage = "https://github.com/source-foundry/dehinter";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ danc86 ];
33   };