gnu: Add python-fontparts-bootstrap.

* gnu/packages/fontutils.scm (python-fontparts-bootstrap): New variable.
This commit is contained in:
Maxim Cournoyer 2022-04-05 00:05:07 -04:00
parent f85c6ae421
commit 16ca467344
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -50,6 +50,7 @@ (define-module (gnu packages fontutils)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gperf)
#:use-module (gnu packages graphics)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages linux)
@ -177,6 +178,32 @@ (define-public python-fontpens-bootstrap
implementing the pen protocol for manipulating glyphs.")
(license license:bsd-3)))
;;; A variant used to break a cycle with python-fontpens.
(define-public python-fontparts-bootstrap
(hidden-package
(package
(name "python-fontparts-bootstrap")
(version "0.10.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fontParts" version ".zip"))
(sha256
(base32 "1ic453q86s5hsw8mxnclk1vr4qp69fd67gywhv23zqwz9a7kb7lh"))))
(build-system python-build-system)
(propagated-inputs
(list python-booleanoperations
python-defcon-bootstrap
python-fontmath
python-fonttools))
(native-inputs (list unzip))
(home-page "https://github.com/robotools/fontParts")
(synopsis "Library for interacting with font parts")
(description "FontParts is an @acronym{API, Application Programming
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-opentype-sanitizer
(package
(name "python-opentype-sanitizer")