summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-21 12:41:01 -0300
committerVinicius Monego <monego@posteo.net>2025-06-21 15:50:33 -0300
commit676befd862b906b801785556060e3e888cb43543 (patch)
tree1332602f7920fa76aba968bb662795d645641215 /gnu/packages/python-xyz.scm
parent43cb6655bf27b5e9aa7452e5f16d23b5073ee4ab (diff)
gnu: python-logwrap: Update to 11.1.1.
* gnu/packages/python-xyz.scm (python-logwrap): Update to 11.1.1. [arguments]: Do not override the 'check' phase. [native-inputs]: Remove python-cython, python-toml. Add python-setuptools. Change-Id: I31b050fbc8e19f076b2fed35357b3948b2757e7c
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 8 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6584b3132c..39fb78dae2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3706,27 +3706,21 @@ module and then similar looking characters are removed.")
(define-public python-logwrap
(package
(name "python-logwrap")
- (version "8.2.0.post0")
+ (version "11.1.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "logwrap" version))
(sha256
(base32
- "1dv7gny3rfci5cal2ipr6d0pcz3yhka7af96dfsd3ir1mxy8p1j9"))))
- (build-system python-build-system)
+ "1idralspy7yn6nyc97zbga64cwj8w4cqg6j9c0nd4ixkw2njancc"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f ; Tests not included in pypi release.
- #:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest"))
- #t)))))
- (native-inputs
- (list python-cython python-pytest python-setuptools-scm python-toml
- python-wheel))
+ `(#:tests? #f)) ; Tests not included in pypi release.
+ (native-inputs (list python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
(home-page "https://github.com/python-useful-helpers/logwrap")
(synopsis "Decorator for logging function arguments")
(description "This package provides a decorator to log function arguments