summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-25 20:59:13 -0300
committerVinicius Monego <monego@posteo.net>2025-06-26 00:42:01 -0300
commit75633187c229b2f5c212df486eaa9111ecd7cd55 (patch)
treea2c02de82403ef78307b0a16eb0d177ac8c0a9d0 /gnu/packages/python-xyz.scm
parent20ab9d8ce9bc65f942c75696955289ff36faca9c (diff)
gnu: python-click-repl: Update to 0.3.0.
* gnu/packages/python-xyz.scm (python-click-repl): Update to 0.3.0. [build-system]: Use pyproject-build-system. [arguments]<#:phases>: Do not override the 'check' phase. [native-inputs]: Add python-pytest-cov, python-setuptools, python-wheel. [propagated-inputs]: Remove python-six. [home-page]: Follow redirect. Change-Id: I57d87c88223b27118751d61c3b6083f9f419edcf
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 9 insertions, 15 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cc645d0271..669f9d9849 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8442,7 +8442,7 @@ format.")
(define-public python-click-repl
(package
(name "python-click-repl")
- (version "0.2.0")
+ (version "0.3.0")
(source
(origin
(method git-fetch) ; no tests in PyPI release
@@ -8451,21 +8451,15 @@ format.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "16ybsnwlj2jlqcfxflky8jz7i3nhrd3f6mvkpgs95618l8lx994i"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "-m" "pytest")))))))
- (native-inputs
- (list python-pytest))
+ (base32 "08asy80wdplbrfff7q7qb9k3kkaw5jxqvy9jnkfvsqy3831zf964"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest
+ python-pytest-cov ; used by default
+ python-setuptools
+ python-wheel))
(propagated-inputs
- (list python-click python-prompt-toolkit python-six))
- (home-page "https://github.com/untitaker/click-repl")
+ (list python-click python-prompt-toolkit))
+ (home-page "https://github.com/click-contrib/click-repl")
(synopsis "REPL plugin for Click")
(description "This package provides a REPL plugin for Click.")
(license license:expat)))