[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: python-fasteners: Update to 0.17.3.
From: |
guix-commits |
Subject: |
08/08: gnu: python-fasteners: Update to 0.17.3. |
Date: |
Fri, 8 Sep 2023 05:33:24 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit d4645d5d25c9de0def9745c48a96504e500ec850
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Sep 8 12:24:21 2023 +0300
gnu: python-fasteners: Update to 0.17.3.
* gnu/packages/python-xyz.scm (python-fasteners): Update to 0.17.3.
[build-system]: Switch to pyproject-build-system.
[arguments]: Add custom 'check phase.
[propagated-inputs]: Remove python-monotonic and python-six.
[native-inputs]: Remove python-testtools; add python-diskcache,
python-more-itertools, and python-pytest.
---
gnu/packages/python-xyz.scm | 32 +++++++++++++++++++-------------
1 file changed, 19 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 408c370adf..a3b7b9fa60 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24763,19 +24763,25 @@ and corruption checks.")
(define-public python-fasteners
(package
(name "python-fasteners")
- (version "0.15")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "fasteners" version))
- (sha256
- (base32
- "1vzmz1xh38b84dv0f4hlp7arwmx8wjlih6lf964bpy8dnyk6s5rs"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-monotonic python-six))
- (native-inputs
- (list python-testtools))
+ (version "0.17.3")
+ (source (origin
+ ;; No tests in the pypi tarball
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/harlowja/fasteners")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0m0dxv8ljpkq99s3d1mib1zfb0ppx3h74h5yr8809zsrq2klfn0m"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest")))))))
+ (native-inputs (list python-diskcache python-more-itertools python-pytest))
(home-page "https://github.com/harlowja/fasteners")
(synopsis "Python package that provides useful locks")
(description
- branch master updated (3eb77954f9 -> d4645d5d25), guix-commits, 2023/09/08
- 02/08: gnu: python-hacking: Update to 5.0.0., guix-commits, 2023/09/08
- 01/08: gnu: python-eventlet: Update to 0.33.3., guix-commits, 2023/09/08
- 03/08: gnu: Remove python-flake8-3.8., guix-commits, 2023/09/08
- 04/08: gnu: Remove python-pycodestyle-2.6., guix-commits, 2023/09/08
- 05/08: gnu: Remove python-pyflakes-2.2., guix-commits, 2023/09/08
- 07/08: gnu: python-numcodecs: Fix building on non x86 machines., guix-commits, 2023/09/08
- 08/08: gnu: python-fasteners: Update to 0.17.3.,
guix-commits <=
- 06/08: gnu: python-numcodecs: Remove another cythonized file., guix-commits, 2023/09/08