gnu: python-translate-toolkit: Update to 3.5.1.
* gnu/packages/python-xyz (python-translate-toolkit): Update to 3.5.1. (python2-translate-toolkit): Keep at previous version.
This commit is contained in:
parent
f2d345a7b6
commit
97909fd6fd
1 changed files with 14 additions and 4 deletions
|
|
@ -18612,13 +18612,13 @@ current test, while only declaring the test-specific fields")
|
||||||
(define-public python-translate-toolkit
|
(define-public python-translate-toolkit
|
||||||
(package
|
(package
|
||||||
(name "python-translate-toolkit")
|
(name "python-translate-toolkit")
|
||||||
(version "2.1.0")
|
(version "3.5.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "translate-toolkit" version ".tar.bz2"))
|
(uri (pypi-uri "translate-toolkit" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1vlkwrg83vb17jc36pmwh2b7jphwf390lz0jw8hakcg16qhwypvq"))))
|
(base32 "020pp7pbpnavxd41z90vyzzx06ci57mx9drkgbsb89wxxx4gal9v"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)
|
`(("python-pytest" ,python-pytest)
|
||||||
|
|
@ -18646,8 +18646,18 @@ current test, while only declaring the test-specific fields")
|
||||||
several utilities, as well as an API for building localization tools.")
|
several utilities, as well as an API for building localization tools.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
;; Required for virtaal, newer versions do not build with python2
|
||||||
(define-public python2-translate-toolkit
|
(define-public python2-translate-toolkit
|
||||||
(package-with-python2 python-translate-toolkit))
|
(package-with-python2
|
||||||
|
(package
|
||||||
|
(inherit python-translate-toolkit)
|
||||||
|
(version "2.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "translate-toolkit" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1vlkwrg83vb17jc36pmwh2b7jphwf390lz0jw8hakcg16qhwypvq")))))))
|
||||||
|
|
||||||
(define-public python-packaging
|
(define-public python-packaging
|
||||||
(package
|
(package
|
||||||
|
|
|
||||||
Reference in a new issue