diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 12:09:20 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:10 +0100 |
| commit | 0cd9ca8a249941b8ab832092540dfda79d4a4aef (patch) | |
| tree | ed65abc8eb8cf92f17376446de27b3e0a841efc9 /gnu/packages/python-xyz.scm | |
| parent | e317f5b7a041636d0e3b867868081863f6edad25 (diff) | |
gnu: python-milc: Update to 1.9.1.
* gnu/packages/python-xyz.scm (python-milc): Update to 1.9.1.
[source]: Switch to git-fetch providing tests.
[propagated-inputs]: Remove python-appdirs.
[native-inputs]: Remove python-wheel and python-pip; add python-pytest
and python-semver.
Change-Id: Iafbf4002713a0662522c16e269eb6063e71381eb
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e6d86becdf..7cf14d46e2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6693,18 +6693,28 @@ any Python package.") (define-public python-milc (package (name "python-milc") - (version "1.9.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "milc" version)) - (sha256 - (base32 - "1kkiric668mikc5d3jn1x27jrasqlqlyj8lh6d7zp8a866icjan0")))) + (version "1.9.1") + (source + (origin + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/clueboard/milc") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ms9ks0xn1ikd48352bifnbfahfnw3gh4qs1ckmmwbpiq2czca3g")))) (build-system pyproject-build-system) - (propagated-inputs (list python-appdirs python-argcomplete python-colorama - python-halo python-spinners python-platformdirs - python-types-colorama)) - (native-inputs (list python-setuptools python-wheel python-pip)) + (native-inputs + (list python-pytest + python-semver + python-setuptools)) + (propagated-inputs + (list python-argcomplete + python-colorama + python-halo + python-platformdirs + python-spinners + python-types-colorama)) (home-page "https://github.com/clueboard/milc") (synopsis "Python library for command line interface programs") (description "MILC is a Python library for developing command line |
