summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-08-02 12:21:57 -0300
committerVinicius Monego <monego@posteo.net>2025-08-04 21:34:23 -0300
commitc48521a40b64797e21003bdb1cc625c2ff0802e1 (patch)
treeb90461aae71e986c2294bdd6f6c6f3604e54e0d2 /gnu/packages/python-xyz.scm
parent427e50ac7cd8e76580746cfa9e9412b082dd27f8 (diff)
gnu: python-shellingham: Update to 1.5.4.
* gnu/packages/python-xyz.scm (python-shellingham): Update to 1.5.4. [build-system]: Use pyproject-build-system. [arguments]<#:phases> Do not override the 'check' phase. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I4bb680ac627497394067145fab5693f76f1c89e7
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm15
1 files changed, 4 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8bd4e5db3f..c9e7f0e731 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23131,23 +23131,16 @@ implementation has been adapted, improved, and fixed from Molten.")
(define-public python-shellingham
(package
(name "python-shellingham")
- (version "1.5.1")
+ (version "1.5.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "shellingham" version))
(sha256
- (base32 "0iawv24xx6vhwbhqlxyyg901f8pf6abqyfg0711v1bvlipx83g21"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python" "-m" "pytest" "-v")))))))
+ (base32 "1ph46hv920ha9clwxgrllbrphh0ww4v4pjmkbb9mnzj8kmrs1g4d"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-pytest-mock))
+ (list python-pytest python-pytest-mock python-setuptools python-wheel))
(home-page "https://github.com/sarugaku/shellingham")
(synopsis "Tool to detect surrounding shell")
(description