mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 23:20:29 -05:00
gnu: python-fonttools: Update to 3.28.0.
* gnu/packages/python.scm (python-fonttools): Update to 3.28.0. [arguments]: Remove. [native-inputs]: Add PYTHON-PYTEST and PYTHON-PYTEST-RUNNER.
This commit is contained in:
parent
fc8778e293
commit
4696368108
1 changed files with 5 additions and 15 deletions
|
@ -5894,28 +5894,18 @@ (define-public python2-straight-plugin
|
||||||
(define-public python-fonttools
|
(define-public python-fonttools
|
||||||
(package
|
(package
|
||||||
(name "python-fonttools")
|
(name "python-fonttools")
|
||||||
(version "3.15.1")
|
(version "3.28.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "fonttools" version ".zip"))
|
(uri (pypi-uri "fonttools" version ".zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hhj97izwliy0vybmza72d90l5d4mcn50y8akq7kyccfl82vdx4d"))))
|
"0vsvjhidpb5kywpjgz1j3fywzkddxkb0afqai18qa3h6lqjyxwpb"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
|
||||||
'(#:test-target "check"
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'patch-setuppy
|
|
||||||
;; Remove the undocumented "extra_path" argument, which adds an
|
|
||||||
;; intervening directories between site-packages and the package
|
|
||||||
;; directory.
|
|
||||||
(lambda _
|
|
||||||
(substitute* "setup.py"
|
|
||||||
(("^[ \t]*extra_path *= *'FontTools',") ""))
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("unzip" ,unzip)))
|
`(("unzip" ,unzip)
|
||||||
|
("python-pytest" ,python-pytest)
|
||||||
|
("python-pytest-runner" ,python-pytest-runner)))
|
||||||
(home-page "https://github.com/behdad/fonttools")
|
(home-page "https://github.com/behdad/fonttools")
|
||||||
(synopsis "Tools to manipulate font files")
|
(synopsis "Tools to manipulate font files")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue