pythonPackages.ufoprocessor: init at 1.9.0
This commit is contained in:
parent
34f05cf02f
commit
40c0cde72e
35
pkgs/development/python-modules/ufoprocessor/default.nix
Normal file
35
pkgs/development/python-modules/ufoprocessor/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, defcon, fonttools, lxml, fs
|
||||
, mutatormath, fontmath, fontparts
|
||||
, setuptools_scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ufoProcessor";
|
||||
version = "1.9.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ns11aamgavgsfj8qf5kq7dvzmgl0mhr1cbych2f075ipfdvva5s";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
defcon
|
||||
lxml
|
||||
fonttools
|
||||
fs
|
||||
fontmath
|
||||
fontparts
|
||||
mutatormath
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Read, write and generate UFOs with designspace data";
|
||||
homepage = "https://github.com/LettError/ufoProcessor";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
@ -1725,6 +1725,8 @@ in {
|
||||
|
||||
ufonormalizer = callPackage ../development/python-modules/ufonormalizer { };
|
||||
|
||||
ufoprocessor = callPackage ../development/python-modules/ufoprocessor { };
|
||||
|
||||
unifi = callPackage ../development/python-modules/unifi { };
|
||||
|
||||
uvcclient = callPackage ../development/python-modules/uvcclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user