summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-31 10:35:03 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:21 +0100
commita1ea35e0d82ff69f86deb4c0f39285345f13b160 (patch)
tree771521bbcb9ab5c0e9828ff320b47cede39fad31 /gnu/packages/python-build.scm
parent1a00e429c603aaf466d3158940c44888de8f2b5f (diff)
gnu: python-iniconfig: Move to python-build and adapt native-inputs.
* gnu/packages/python-xyz.scm (python-iniconfig): Move from here… * gnu/packages/python-build.scm (python-iniconfig): …to here. [native-inputs]: Remove python-hatch-vcs, and python-hatchling; add python-hatch-vcs-bootstrap, and python-hatchling-bootstrap. Change-Id: I4691d19787fdfbc1293b475c43595d273aa40a4e Modified-by-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 2cc6b8dbc8d..a81b9915f37 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1043,6 +1043,34 @@ version control system (like Git) to determine project versions.")
1043 (list python-hatchling-bootstrap 1043 (list python-hatchling-bootstrap
1044 python-setuptools-scm-bootstrap)))) 1044 python-setuptools-scm-bootstrap))))
1045 1045
1046(define-public python-iniconfig
1047 (package
1048 (name "python-iniconfig")
1049 (version "2.1.0")
1050 (source
1051 (origin
1052 (method url-fetch)
1053 (uri (pypi-uri "iniconfig" version))
1054 (sha256
1055 (base32 "1iz1fg3n6pv4q8jzv1q0izl5001diwqggizrg3p3ywrn1gix5frs"))))
1056 (build-system pyproject-build-system)
1057 (arguments (list #:tests? #f)) ;no tests in PyPI, tests introduce cycle with pytest
1058 (native-inputs
1059 (list python-hatch-vcs-bootstrap
1060 python-hatchling-bootstrap))
1061 (home-page "https://github.com/RonnyPfannschmidt/iniconfig")
1062 (synopsis "Simple INI-file parser")
1063 (description "The @code{iniconfig} package provides a small and simple
1064 INI-file parser module having a unique set of features ; @code{iniconfig}
1065 @itemize
1066 @item maintains the order of sections and entries ;
1067 @item supports multi-line values with or without line-continuations ;
1068 @item supports \"#\" comments everywhere ;
1069 @item raises errors with proper line-numbers ;
1070 @item raises an error when two sections have the same name.
1071 @end itemize")
1072 (license license:expat)))
1073
1046(define-public python-installer 1074(define-public python-installer
1047 (package 1075 (package
1048 (name "python-installer") 1076 (name "python-installer")