diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:25 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-03 12:26:47 +0100 |
| commit | 16bd2871d6bd90eb236228ad79c2c83b9fb8f720 (patch) | |
| tree | 1c417ead8bd2c2329110a0009a8d53270c0fc664 /gnu | |
| parent | e00cb0d09491dd8094059c963dbb33f598723532 (diff) | |
gnu: python-mike: Update to 2.1.3.
* gnu/packages/python-xyz.scm (python-mike): Update to 2.1.3.
[source]: Switch to git-fetch, PyPI archive provides no tests.
[build-system]: Use pyproejct.
[arguments] <test-flags>: Skip some prolematic tests.
[native-inputs]: Remove python-coverage, and python-flake8; add
python-pytest, python-setuptools, and python-wheel.
[propagated-inputs]: Add python-importlib-metadata,
python-importlib-resources, python-pyparsing, and python-pyyaml-env-tag.
Change-Id: Ia0db1497766c92a676ecc9dcc5edb9b6b6202a74
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 42 |
1 files changed, 32 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ddfdf83a219..dc3e17f8f77 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -38716,18 +38716,40 @@ and setting the color of terminal output, via HyDEV.") | |||
| 38716 | (define-public python-mike | 38716 | (define-public python-mike |
| 38717 | (package | 38717 | (package |
| 38718 | (name "python-mike") | 38718 | (name "python-mike") |
| 38719 | (version "1.1.2") | 38719 | (version "2.1.3") |
| 38720 | (source (origin | 38720 | (source |
| 38721 | (method url-fetch) | 38721 | (origin |
| 38722 | (uri (pypi-uri "mike" version)) | 38722 | (method git-fetch) ; no tests data in PyPi package |
| 38723 | (sha256 | 38723 | (uri (git-reference |
| 38724 | (base32 | 38724 | (url "https://github.com/jimporter/mike") |
| 38725 | "0yxp816x7s948xsd0fifvq9shg01xdxlifd9rzf5y2rd9iwz3hsn")))) | 38725 | (commit (string-append "v" version)))) |
| 38726 | (build-system python-build-system) | 38726 | (file-name (git-file-name name version)) |
| 38727 | (sha256 | ||
| 38728 | (base32 "0rgmpxim91rpn8cplyi72g75fhclr40hxcpschn7rbfkqdhj8rbq")))) | ||
| 38729 | (build-system pyproject-build-system) | ||
| 38730 | (arguments | ||
| 38731 | (list | ||
| 38732 | #:test-flags | ||
| 38733 | ;; Most of integration tests hang or fail. | ||
| 38734 | #~(list "--ignore=test/integration/" | ||
| 38735 | ;; AttributeError: 'NoneType' object has no attribute 'group' | ||
| 38736 | "--ignore=test/unit/test_commands.py" | ||
| 38737 | "--deselect=test/unit/test_mkdocs_utils.py::TestVersion::test_version"))) | ||
| 38727 | (native-inputs | 38738 | (native-inputs |
| 38728 | (list python-coverage python-flake8 python-shtab)) | 38739 | (list git-minimal/pinned |
| 38740 | python-pytest | ||
| 38741 | python-setuptools | ||
| 38742 | python-shtab | ||
| 38743 | python-wheel)) | ||
| 38729 | (propagated-inputs | 38744 | (propagated-inputs |
| 38730 | (list python-jinja2 python-mkdocs python-pyyaml python-verspec)) | 38745 | (list python-importlib-metadata |
| 38746 | python-importlib-resources | ||
| 38747 | python-jinja2 | ||
| 38748 | python-mkdocs | ||
| 38749 | python-pyparsing | ||
| 38750 | python-pyyaml | ||
| 38751 | python-pyyaml-env-tag | ||
| 38752 | python-verspec)) | ||
| 38731 | (home-page "https://github.com/jimporter/mike") | 38753 | (home-page "https://github.com/jimporter/mike") |
| 38732 | (synopsis "Manage multiple versions of MkDocs-powered documentation") | 38754 | (synopsis "Manage multiple versions of MkDocs-powered documentation") |
| 38733 | (description | 38755 | (description |
