gnu: Update python-natsort to 7.0.1, python2-natsort to 6.2.1.
* gnu/packages/python-xyz.scm (python-natsort): Update to 7.0.1. (python2-natsort): Update to 6.2.1.
This commit is contained in:
parent
0731f943e3
commit
e3da9b2e55
1 changed files with 10 additions and 2 deletions
|
@ -11621,13 +11621,13 @@ Python to manipulate OpenDocument 1.2 files.")
|
||||||
(define-public python-natsort
|
(define-public python-natsort
|
||||||
(package
|
(package
|
||||||
(name "python-natsort")
|
(name "python-natsort")
|
||||||
(version "5.4.1")
|
(version "7.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "natsort" version))
|
(uri (pypi-uri "natsort" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0i732amg6yzkx4g4c9j09jmqq39q377x9cl2nbkm5hax2c2v0wxf"))))
|
"1ksqfai72dbcfbwx43pxl658j59mx2rvqypjy1fk0ax2qd6lccx6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils)
|
`(#:modules ((guix build utils)
|
||||||
|
@ -11672,9 +11672,17 @@ command @command{natsort} that exposes this functionality in the command line.")
|
||||||
(license license:expat)
|
(license license:expat)
|
||||||
(properties `((python2-variant . ,(delay python2-natsort))))))
|
(properties `((python2-variant . ,(delay python2-natsort))))))
|
||||||
|
|
||||||
|
;; Natsort 6.x are the last versions with support for Python 2.
|
||||||
(define-public python2-natsort
|
(define-public python2-natsort
|
||||||
(let ((base (package-with-python2 (strip-python2-variant python-natsort))))
|
(let ((base (package-with-python2 (strip-python2-variant python-natsort))))
|
||||||
(package (inherit base)
|
(package (inherit base)
|
||||||
|
(version "6.2.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "natsort" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1mc9hbh6fv76xyz13frm7dgi05cf74f9j5wvcyjiy5234gylz565"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python2-pathlib" ,python2-pathlib)
|
`(("python2-pathlib" ,python2-pathlib)
|
||||||
,@(package-native-inputs base))))))
|
,@(package-native-inputs base))))))
|
||||||
|
|
Reference in a new issue