gnu: python-fonttools: Update to 4.28.5.

* gnu/packages/python-xyz.scm (python-fonttools): Update to 4.28.5 and hide
the package.
[properties]: New field.
(python-fonttools-with-tests): New variable.
This commit is contained in:
Maxim Cournoyer 2021-12-21 00:48:01 -05:00
parent b4e18112ef
commit e5e533c221
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -10620,28 +10620,53 @@ (define-public python-fs
number of lines in the contained files easily.") number of lines in the contained files easily.")
(license license:expat))) (license license:expat)))
;;; Tests are left out in the main package to avoid cycles.
(define-public python-fonttools (define-public python-fonttools
(package (hidden-package
(name "python-fonttools") (package
(version "4.6.0") (name "python-fonttools")
(source (origin (version "4.28.5")
(method url-fetch) (source (origin
(uri (pypi-uri "fonttools" version ".zip")) (method url-fetch)
(sha256 (uri (pypi-uri "fonttools" version ".zip"))
(base32 (sha256
"1mq9kdzhcsp96bhv7smnrpdg1s4z5wh70bsl99c0jmcrahqdisqq")))) (base32
(build-system python-build-system) "1jhl5n3rfqq7fznvsh6r80n7ylap1a7ppq1040y8cflhyz80ap2l"))))
(native-inputs (build-system python-build-system)
(list unzip python-pytest python-pytest-runner)) (native-inputs
(home-page "https://github.com/fonttools/fonttools") (list unzip))
(synopsis "Tools to manipulate font files") (arguments '(#:tests? #f))
(description (home-page "https://github.com/fonttools/fonttools")
"FontTools/TTX is a library to manipulate font files from Python. It (synopsis "Tools to manipulate font files")
(description
"FontTools/TTX is a library to manipulate font files from Python. It
supports reading and writing of TrueType/OpenType fonts, reading and writing supports reading and writing of TrueType/OpenType fonts, reading and writing
of AFM files, reading (and partially writing) of PS Type 1 fonts. The package of AFM files, reading (and partially writing) of PS Type 1 fonts. The package
also contains a tool called TTX which converts TrueType/OpenType fonts to and also contains a tool called TTX which converts TrueType/OpenType fonts to and
from an XML-based format.") from an XML-based format.")
(license license:expat))) (license license:expat)
(properties `((python2-variant . ,(delay python2-fonttools)))))))
(define-public python-fonttools-with-tests
(package/inherit python-fonttools
(arguments
(substitute-keyword-arguments (package-arguments python-fonttools)
((#:tests? _ #f)
#t)
((#:phases phases '%standard-phases)
`(modify-phases ,phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest"))))))))
(native-inputs
(modify-inputs (package-inputs python-fonttools)
(append python-pytest ;FIXME: indentation is broken
python-brotli
python-fs
python-scipy
python-zopfli)))
(properties (alist-delete 'hidden? (package-properties python-fonttools)))))
;; Fonttools 4.x dropped support for Python 2, so stick with 3.x here. ;; Fonttools 4.x dropped support for Python 2, so stick with 3.x here.
(define-public python2-fonttools (define-public python2-fonttools