diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-12 14:40:14 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:36 +0100 |
| commit | 949f90a52456871bc6c13b64c5dc8423d5904224 (patch) | |
| tree | ab297652d95af1d32f3b070cd167cf1bb41b0adb /gnu/packages/python-xyz.scm | |
| parent | 9b81fa21019690eaf013c66d43e74f06527f3416 (diff) | |
gnu: python-iniconfig: Update to 2.1.0.
* gnu/packages/python-xyz.scm (python-iniconfig): Update to 2.1.0.
[build-system]: Use pyproject.
[arguments] <test?>: Visually disable them as PyPI does not provide
tests and tests introduce cycle with Pytest.
[native-inputs]: Add python-hatch-vcs, python-hatchling.
Change-Id: I20f3bc55fbd94aa2c79ce77e35f1a62aacd4af14
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6f0323e9bb..b60ba132d9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26314,15 +26314,18 @@ package attempts to address the shortcomings of @code{isodate}.") (define-public python-iniconfig (package (name "python-iniconfig") - (version "1.1.1") + (version "2.1.0") (source (origin (method url-fetch) (uri (pypi-uri "iniconfig" version)) (sha256 - (base32 - "0ckzngs3scaa1mcfmsi1w40a1l8cxxnncscrxzjjwjyisx8z0fmw")))) - (build-system python-build-system) + (base32 "1iz1fg3n6pv4q8jzv1q0izl5001diwqggizrg3p3ywrn1gix5frs")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI, tests introduce cycle with pytest + (native-inputs + (list python-hatch-vcs + python-hatchling)) (home-page "https://github.com/RonnyPfannschmidt/iniconfig") (synopsis "Simple INI-file parser") (description "The @code{iniconfig} package provides a small and simple |
