diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-21 11:47:09 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-21 13:02:22 +0100 |
| commit | f2295f8fde56f06f0759a1cd8d927745af9e360d (patch) | |
| tree | 373645d2adcc830611ea83f0051ff1370411c1ca /gnu/packages/python-xyz.scm | |
| parent | c0e770a57d362301bbfd67b0979ab642480d6ca4 (diff) | |
gnu: python-typer: Update to 0.22.0.
* gnu/packages/python-xyz.scm (python-typer): Update to 0.22.0.
[arguments]<#:phases>: Add pre-check.
<#:test-flags>: Disable ’test_cli test.
[propagated-inputs]: Add python-annotated-doc.
Change-Id: Ibbf8ada61016c2ec30ca8da3f4919003d87ece8a
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bd797cb6886..75459c4f46c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38203,7 +38203,7 @@ Python versions that don't natively support them.") (define-public python-typer (package (name "python-typer") - (version "0.20.0") + (version "0.22.0") (source (origin (method git-fetch) @@ -38212,12 +38212,18 @@ Python versions that don't natively support them.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1a2ay2kj3d3rwjscx3hw2adgqifs3hdp7kwcpdh1bl3iy8mn9xdi")))) + (base32 "17gxqqiafrp5dvqfm6k39zbanvnwb8b9kr7dvnkah17js0rfy1sz")))) (build-system pyproject-build-system) (arguments (list + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'pre-check + (lambda _ + (setenv "HOME" "/tmp")))) #:test-flags - #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))))) + #~(list "-k" "not test_cli" + "--numprocesses" (number->string (min 8 (parallel-job-count)))))) (native-inputs (list python-coverage ;this is required in tests python-pdm-backend @@ -38226,6 +38232,7 @@ Python versions that don't natively support them.") (propagated-inputs (list python-click python-typing-extensions + python-annotated-doc ;; [optional] python-rich python-shellingham)) |
