[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
116/204: gnu: python-send2trash: Update to 1.8.0 and update home page.
From: |
guix-commits |
Subject: |
116/204: gnu: python-send2trash: Update to 1.8.0 and update home page. |
Date: |
Wed, 20 Apr 2022 02:03:30 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit a373af9888ca52103cdcf1abc21afb2cc5aa6ba2
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 13 21:35:02 2022 -0400
gnu: python-send2trash: Update to 1.8.0 and update home page.
* gnu/packages/python-xyz.scm (python-send2trash): Update to 1.8.0.
[source]: Update Git URL.
[phases]{pre-check}: Set HOME to /tmp directly.
{check}: Override phase.
[native-inputs]: Add python-pytest.
[properties]: Delete field.
(python2-send2trash): Delete variable.
[home-page]: Update URL.
---
gnu/packages/python-xyz.scm | 31 ++++++++++---------------------
1 file changed, 10 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 399cc5c4ee..69e531004d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22037,46 +22037,35 @@ systems policies.")
(define-public python-send2trash
(package
(name "python-send2trash")
- (version "1.5.0")
+ (version "1.8.0")
(source
(origin (method git-fetch)
;; Source tarball on PyPI doesn't include tests.
(uri (git-reference
- (url "https://github.com/hsoft/send2trash")
+ (url "https://github.com/arsenetar/send2trash")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
- "1c76zldhw2ay7q7r00nnzcampjz9lkqfcbzqpm0iqp5i6bmmv30v"))))
+ "1k7dfypaaq4f36fbciaasv72j6wgjihw8d88axmz9c329bz8v5qx"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-before 'check 'pre-check
(lambda _
- (mkdir-p "/tmp/foo")
- (setenv "HOME" "/tmp/foo")
- #t)))))
- (home-page "https://github.com/hsoft/send2trash")
+ (setenv "HOME" "/tmp")))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv")))))))
+ (native-inputs (list python-pytest))
+ (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
user's @file{~/Trash} directory.")
- (properties `((python2-variant . ,(delay python2-send2trash))))
(license license:bsd-3)))
-(define-public python2-send2trash
- (let ((base (package-with-python2
- (strip-python2-variant python-send2trash))))
- (package/inherit base
- (arguments
- (substitute-keyword-arguments (package-arguments python-send2trash)
- ((#:phases phases)
- `(modify-phases ,phases
- (add-before 'check 'setenv
- (lambda _
- (setenv "GUIX_PYTHONPATH"
- (string-append (getcwd) ":" (getenv
"GUIX_PYTHONPATH"))))))))))))
-
(define-public python-pyfavicon
(package
(name "python-pyfavicon")
- 75/204: gnu: python-scipy: Update to 1.8.0 and enable parallel build., (continued)
- 75/204: gnu: python-scipy: Update to 1.8.0 and enable parallel build., guix-commits, 2022/04/20
- 77/204: gnu: Add python-fonttools-next., guix-commits, 2022/04/20
- 80/204: gnu: Add skia., guix-commits, 2022/04/20
- 85/204: gnu: Add python-sfdlib., guix-commits, 2022/04/20
- 88/204: gnu: Add texlive-bidi., guix-commits, 2022/04/20
- 89/204: gnu: Add font-gfs-ambrosia., guix-commits, 2022/04/20
- 92/204: gnu: Add python-untangle., guix-commits, 2022/04/20
- 96/204: gnu: Add python-pydevd., guix-commits, 2022/04/20
- 100/204: gnu: python-pytest-xdist-next: Update to 2.5.0., guix-commits, 2022/04/20
- 102/204: gnu: python-nest-asyncio: Update to 1.5.5., guix-commits, 2022/04/20
- 116/204: gnu: python-send2trash: Update to 1.8.0 and update home page.,
guix-commits <=
- 97/204: gnu: Add python-debugpy., guix-commits, 2022/04/20
- 120/204: gnu: python-sphinx: Propagate TexLive dependencies., guix-commits, 2022/04/20
- 123/204: gnu: Add python-sphinx-sitemap., guix-commits, 2022/04/20
- 124/204: gnu: texlive-fontspec: Add missing propagated inputs., guix-commits, 2022/04/20
- 132/204: gnu: Add python-cbor2., guix-commits, 2022/04/20
- 139/204: gnu: python-sqlalchemy: Run tests in parallel via xdist., guix-commits, 2022/04/20
- 133/204: gnu: python-httpcore: Update to 0.14.7 and enable tests., guix-commits, 2022/04/20
- 156/204: gnu: python-umap-learn: Update to 0.5.3., guix-commits, 2022/04/20
- 176/204: gnu: python-bitstruct: Update to 8.14.0., guix-commits, 2022/04/20
- 188/204: gnu: Remove python2-jmespath., guix-commits, 2022/04/20