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
This commit is contained in:
Vinicius Monego 2025-06-21 12:41:01 -03:00
parent 43cb6655bf
commit 676befd862
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -3706,26 +3706,20 @@ module and then similar looking characters are removed.")
(define-public python-logwrap (define-public python-logwrap
(package (package
(name "python-logwrap") (name "python-logwrap")
(version "8.2.0.post0") (version "11.1.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "logwrap" version)) (uri (pypi-uri "logwrap" version))
(sha256 (sha256
(base32 (base32
"1dv7gny3rfci5cal2ipr6d0pcz3yhka7af96dfsd3ir1mxy8p1j9")))) "1idralspy7yn6nyc97zbga64cwj8w4cqg6j9c0nd4ixkw2njancc"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
`(#:tests? #f ; Tests not included in pypi release. `(#:tests? #f)) ; Tests not included in pypi release.
#:phases (native-inputs (list python-pytest
(modify-phases %standard-phases python-setuptools
(replace 'check python-setuptools-scm
(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)) python-wheel))
(home-page "https://github.com/python-useful-helpers/logwrap") (home-page "https://github.com/python-useful-helpers/logwrap")
(synopsis "Decorator for logging function arguments") (synopsis "Decorator for logging function arguments")