diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-26 22:48:22 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-27 00:33:33 +0100 |
commit | e2ccfea68d0424086794286198aa7f5c5b38ad97 (patch) | |
tree | f47c74f15adc79006efb7bcc57cfb2f822de196f | |
parent | 7876575bbf92a113bde9d5e89a64baaa09e690c4 (diff) | |
download | guix-e2ccfea68d0424086794286198aa7f5c5b38ad97.tar.gz guix-e2ccfea68d0424086794286198aa7f5c5b38ad97.zip |
gnu: python-click-didyoumean: Update to 0.3.1.
* gnu/packages/python-xyz.scm (python-click-didyoumean): Update to 0.3.1.
[source]: Swap to a new PyPI packae name ("-" to "_").
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-poetry-core.
Change-Id: I24f2e632732c8204f816806c7ad067d327bb3d28
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 352465250a..48204523db 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11015,16 +11015,18 @@ your favourite programs.") (define-public python-click-didyoumean (package (name "python-click-didyoumean") - (version "0.3.0") + (version "0.3.1") (source (origin (method url-fetch) - (uri (pypi-uri "click-didyoumean" version)) + (uri (pypi-uri "click_didyoumean" version)) (sha256 - (base32 "0dc0xrmqbw0idpx843ahzzvivmvx3fcfsm3k54lnssyra7cg117i")))) - (build-system python-build-system) + (base32 "0qx4npxxgj87zk5hkah5ijrc76ba7ymdd6r7na5fyr5y1pzzv0jg")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ; no tests in PyPI and no setup.py in github + (native-inputs + (list python-poetry-core)) (propagated-inputs (list python-click)) (home-page "https://github.com/timofurrer/click-didyoumean") |