guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c5f3e55e05bedabbd62c48df7fb992d06575d1a3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 28 20:11:39 2026 +0100
gnu: python-anaconda-cli-base: Update to 0.8.2.
* gnu/packages/python-xyz.scm (python-anaconda-cli-base): Update to 0.8.2.
[source]: Switch to git-fetch.
[arguments] <test-flags>: Skip 2 tessts.
[propagated-inputs]: Add python-pydantic.
---
gnu/packages/python-xyz.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5022376f75..42c50e42f6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -421,14 +421,22 @@ with heap allocation instead of a flat array to represent
a tree.")
(define-public python-anaconda-cli-base
(package
(name "python-anaconda-cli-base")
- (version "0.8.1")
+ (version "0.8.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "anaconda_cli_base" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/anaconda/anaconda-cli-base")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0r2cvz99vrvcm399qsfxiak5qb3mbr0kbvdrkbnm20l9lq2g18zr"))))
+ (base32 "1vsbxcgn05d7mlwl17f0bfq25lydl7i8n4x0a95hmjdl45n1q9wx"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "--deselect=tests/test_cli.py::test_cli_version"
+ "--deselect=tests/test_cli.py::test_load_plugin")))
(native-inputs
(list python-hatch-vcs
python-hatchling
@@ -439,6 +447,7 @@ with heap allocation instead of a flat array to represent a
tree.")
(propagated-inputs
(list python-click
python-packaging
+ python-pydantic
python-pydantic-settings
python-readchar
python-rich