diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-07 17:41:00 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:39 +0000 |
commit | 699bc5db6b683783e6c07f0051269c345c46ef2d (patch) | |
tree | 766823eb4d5073de4963a7046698e336a41aadeb | |
parent | 8ac97dcea21b56ef53b8cfff5063b18b432ceb39 (diff) | |
download | guix-699bc5db6b683783e6c07f0051269c345c46ef2d.tar.gz guix-699bc5db6b683783e6c07f0051269c345c46ef2d.zip |
gnu: python-send2trash: Update to 1.8.2.
* gnu/packages/python-xyz.scm (python-send2trash): Update to 1.8.2.
[build-system]: Use pyproject-build-system.
[arguments]: Remove custom 'check phase.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I62f85bb58ee4efb2accb26086273a7cd2486654e
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 06e8597ccb..366228eabb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26921,7 +26921,7 @@ systems policies.") (define-public python-send2trash (package (name "python-send2trash") - (version "1.8.0") + (version "1.8.2") (source (origin (method git-fetch) ;; Source tarball on PyPI doesn't include tests. @@ -26931,19 +26931,15 @@ systems policies.") (file-name (git-file-name name version)) (sha256 (base32 - "1k7dfypaaq4f36fbciaasv72j6wgjihw8d88axmz9c329bz8v5qx")))) - (build-system python-build-system) + "0dl9nv3h3kkcavwiswzg76pksqczq448gbdvlbz88bm71zvdshx7")))) + (build-system pyproject-build-system) (arguments - '(#:phases - (modify-phases %standard-phases + (list + #:phases + '(modify-phases %standard-phases (add-before 'check 'pre-check - (lambda _ - (setenv "HOME" "/tmp"))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) - (native-inputs (list python-pytest)) + (lambda _ (setenv "HOME" "/tmp")))))) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/arsenetar/send2trash") (synopsis "Send files to the user's @file{~/Trash} directory") (description "This package provides a Python library to send files to the |