python39Packages.fontmake: init at 3.3.0
This commit is contained in:
parent
3538ce088a
commit
76fbad7ba6
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/fontmake/default.nix
Normal file
42
pkgs/development/python-modules/fontmake/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, glyphslib
|
||||||
|
, setuptools-scm
|
||||||
|
, ufo2ft
|
||||||
|
, fonttools
|
||||||
|
, fontmath
|
||||||
|
, lxml
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "fontmake";
|
||||||
|
version = "3.3.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-lD7MvZdr9CeWdoZtD3+8stVJTeQN5/AQ4miA/I2TFoE=";
|
||||||
|
extension = "zip";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools-scm ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
glyphslib
|
||||||
|
ufo2ft
|
||||||
|
fonttools
|
||||||
|
fontmath
|
||||||
|
lxml
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "fontmake" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Compiles fonts from various sources (.glyphs, .ufo, designspace) into binaries formats (.otf, .ttf)";
|
||||||
|
homepage = "https://github.com/googlefonts/fontmake";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = [ lib.maintainers.BarinovMaxim ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3107,6 +3107,8 @@ in {
|
||||||
|
|
||||||
fonttools = callPackage ../development/python-modules/fonttools { };
|
fonttools = callPackage ../development/python-modules/fonttools { };
|
||||||
|
|
||||||
|
fontmake = callPackage ../development/python-modules/fontmake { };
|
||||||
|
|
||||||
foobot-async = callPackage ../development/python-modules/foobot-async { };
|
foobot-async = callPackage ../development/python-modules/foobot-async { };
|
||||||
|
|
||||||
foolscap = callPackage ../development/python-modules/foolscap { };
|
foolscap = callPackage ../development/python-modules/foolscap { };
|
||||||
|
|
Loading…
Reference in a new issue