diff options
author | Marius Bakke <marius@gnu.org> | 2021-09-14 23:37:04 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-09-15 23:38:50 +0200 |
commit | 1e230044634955e0c989b0e9933033e2024413cb (patch) | |
tree | e2afc37515f2a484c003ac3b0f1da2d5171fa989 | |
parent | 1e684af949ebd604ab1c9b72d69835339fd47707 (diff) | |
download | guix-1e230044634955e0c989b0e9933033e2024413cb.tar guix-1e230044634955e0c989b0e9933033e2024413cb.tar.gz |
gnu: python-natsort: Update to 7.1.1.
* gnu/packages/python-xyz.scm (python-natsort): Update to 7.1.1.
[arguments]: Remove obsolete phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 66857b31b0..c7045a604e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16000,13 +16000,13 @@ Python to manipulate OpenDocument 1.2 files.") (define-public python-natsort (package (name "python-natsort") - (version "7.0.1") + (version "7.1.1") (source (origin (method url-fetch) (uri (pypi-uri "natsort" version)) (sha256 (base32 - "1ksqfai72dbcfbwx43pxl658j59mx2rvqypjy1fk0ax2qd6lccx6")))) + "00y49bfsi7rrsd1s42gc2w95a6arl9ipdsx2493hr0v54fj07ih0")))) (build-system python-build-system) (arguments `(#:modules ((guix build utils) @@ -16016,9 +16016,6 @@ Python to manipulate OpenDocument 1.2 files.") (ice-9 ftw)) #:phases (modify-phases %standard-phases - (add-before 'check 'set-cachedir - ;; Tests require write access to $HOME by default - (lambda _ (setenv "PYTHON_EGG_CACHE" "/tmp") #t)) (replace 'check (lambda _ (let ((cwd (getcwd))) |