diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-05 00:10:16 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:45:26 -0400 |
commit | e3d1e821f9be2db1b4a77c8b06f3fbf2b6259481 (patch) | |
tree | 86330d00bd4c54ba81165cbfb19ab9647d2f074d | |
parent | 0ce611f56397092ac963efac71be3d509f035733 (diff) | |
download | guix-e3d1e821f9be2db1b4a77c8b06f3fbf2b6259481.tar.gz guix-e3d1e821f9be2db1b4a77c8b06f3fbf2b6259481.zip |
gnu: Add python-fontparts.
* gnu/packages/fontutils.scm (python-fontparts): New variable.
-rw-r--r-- | gnu/packages/fontutils.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 503ff7afa3..59b4f8075b 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -219,6 +219,16 @@ Interface} for interacting with the parts of fonts during the font development process. FontParts is the successor of RoboFab.") (license license:expat)))) +(define-public python-fontparts + (package/inherit python-fontparts-bootstrap + (name "python-fontparts") + (propagated-inputs + (modify-inputs (package-propagated-inputs python-fontparts-bootstrap) + (replace "python-defcon-bootstrap" python-defcon))) + (properties + (alist-delete 'hidden? + (package-properties python-fontparts-bootstrap))))) + (define-public python-opentype-sanitizer (package (name "python-opentype-sanitizer") |