guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 3b56bfc126a22aa0f6e51584f5e9ea1a36278639
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Dec 31 10:35:03 2025 +0100
gnu: python-iniconfig: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-iniconfig): Move from here…
* gnu/packages/python-build.scm (python-iniconfig): …to here.
Change-Id: I4691d19787fdfbc1293b475c43595d273aa40a4e
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-build.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 28 ----------------------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 76dbbc078d..4cee497097 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1002,6 +1002,34 @@ from requirements.txt.")
version control system (like Git) to determine project versions.")
(license license:expat)))
+(define-public python-iniconfig
+ (package
+ (name "python-iniconfig")
+ (version "2.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "iniconfig" version))
+ (sha256
+ (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
+ INI-file parser module having a unique set of features ; @code{iniconfig}
+ @itemize
+ @item maintains the order of sections and entries ;
+ @item supports multi-line values with or without line-continuations ;
+ @item supports \"#\" comments everywhere ;
+ @item raises errors with proper line-numbers ;
+ @item raises an error when two sections have the same name.
+ @end itemize")
+ (license license:expat)))
+
(define-public python-installer
(package
(name "python-installer")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 844ae05a37..616c30b8b0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24889,34 +24889,6 @@ command line utility, a python library and plugins for
various editors.")
in other versions.")
(license license:expat)))
-(define-public python-iniconfig
- (package
- (name "python-iniconfig")
- (version "2.1.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "iniconfig" version))
- (sha256
- (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
- INI-file parser module having a unique set of features ; @code{iniconfig}
- @itemize
- @item maintains the order of sections and entries ;
- @item supports multi-line values with or without line-continuations ;
- @item supports \"#\" comments everywhere ;
- @item raises errors with proper line-numbers ;
- @item raises an error when two sections have the same name.
- @end itemize")
- (license license:expat)))
-
(define-public python-mando
(package
(name "python-mando")