diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-02-27 08:46:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-02-27 09:59:49 +0100 |
commit | dc8e5343f81660b453a89e1059a7930bbdb66592 (patch) | |
tree | 9dc83894a4910841f6ca0b7df96146b0ae797baf | |
parent | 00f1a7c2444181f83c366507ae848d8692df9875 (diff) | |
download | guix-dc8e5343f81660b453a89e1059a7930bbdb66592.tar.gz guix-dc8e5343f81660b453a89e1059a7930bbdb66592.zip |
gnu: python-confection: Update to 0.1.5.
* gnu/packages/python-xyz.scm (python-confection): Update to 0.1.5.
[propagated-inputs]: Replace python-pydantic with python-pydantic-2; remove
python-typing-extensions.
Change-Id: I28f60a2e8b39bb12cfdf0fd871daa2378bab5619
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a4d95fe76b..0a5ed5ed46 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19531,16 +19531,15 @@ This allows one to make simple text-mode user interfaces on Unix-like systems") (define-public python-confection (package (name "python-confection") - (version "0.0.4") + (version "0.1.5") (source (origin (method url-fetch) (uri (pypi-uri "confection" version)) (sha256 (base32 - "1ksfn10zhnpkcj3y0c3xs4dznvc062bk62x4c3ig0dd6bn4gbpdi")))) + "03hgb6601mx6iip4nr8i0is8x5vmh85z286j7j8lhkxxlqydswlf")))) (build-system pyproject-build-system) - (propagated-inputs (list python-pydantic python-srsly - python-typing-extensions)) + (propagated-inputs (list python-pydantic-2 python-srsly)) (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/explosion/confection") (synopsis "Config system for Python") |