gnu: python-fonttools: Update to 3.15.1.
* gnu/packages/python.scm (python-fonttools): Update to 3.15.1. (source)[uri]: Use 'pypi-uri'. (native-inputs): Add unzip. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
af6ce61088
commit
a4593cc95b
|
@ -7421,15 +7421,13 @@ add functionality and customization to your projects with their own plugins.")
|
||||||
(define-public python-fonttools
|
(define-public python-fonttools
|
||||||
(package
|
(package
|
||||||
(name "python-fonttools")
|
(name "python-fonttools")
|
||||||
(version "2.5")
|
(version "3.15.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "fonttools" version ".zip"))
|
||||||
"https://pypi.python.org/packages/source/F/FontTools/"
|
|
||||||
"fonttools-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08ay3x4ijarwhl60gqx2i9jzq6pxs20p4snc2d1q5jagh4rn39lb"))))
|
"1hhj97izwliy0vybmza72d90l5d4mcn50y8akq7kyccfl82vdx4d"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:test-target "check"
|
'(#:test-target "check"
|
||||||
|
@ -7443,6 +7441,8 @@ add functionality and customization to your projects with their own plugins.")
|
||||||
(substitute* "setup.py"
|
(substitute* "setup.py"
|
||||||
(("^[ \t]*extra_path *= *'FontTools',") ""))
|
(("^[ \t]*extra_path *= *'FontTools',") ""))
|
||||||
#t)))))
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("unzip" ,unzip)))
|
||||||
(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 New Issue