python311Packages.vharfbuzz: init at 0.2.0
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fonttools
|
||||
, pythonImportsCheckHook
|
||||
, uharfbuzz
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vharfbuzz";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-uDX2fYqxV4wmAAIMfA3dBohWmq1N0VurSTEFOjSRpmY=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15569,6 +15569,8 @@ self: super: with self; {
|
||||
|
||||
vg = callPackage ../development/python-modules/vg { };
|
||||
|
||||
vharfbuzz = callPackage ../development/python-modules/vharfbuzz { };
|
||||
|
||||
videocr = callPackage ../development/python-modules/videocr { };
|
||||
|
||||
vidstab = callPackage ../development/python-modules/vidstab { };
|
||||
|
||||
Reference in New Issue
Block a user