blob: 660a7fa733d9ca1e186f941d8e3f205373f6c3b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "ufonormalizer";
version = "0.6.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-TFcVu5SDgfLGQa+CuUk4rSQtm1Nl3RxbfOPXVVaibDo=";
extension = "zip";
};
nativeBuildInputs = [ setuptools-scm ];
meta = {
description = "Script to normalize the XML and other data inside of a UFO";
mainProgram = "ufonormalizer";
homepage = "https://github.com/unified-font-object/ufoNormalizer";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.sternenseemann ];
};
}
|