summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 02:31:13 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:22 +0100
commit8b30c24930ae8a8fa73129f5ced01130cee5c341 (patch)
treeabffe08ccfb156e01e2426fcdf9c31791ef912b1
parent9765d15962cd15b1d5f05b3d4aceefe705432fbd (diff)
gnu: python-more-itertools: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-more-itertools): Move from here… * gnu/packages/python-build.scm (python-more-itertools): …to here. Change-Id: I5449d1bd0ed4f56a3943020e239cf299ab231617 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-build.scm36
-rw-r--r--gnu/packages/python-xyz.scm36
2 files changed, 36 insertions, 36 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 5259706ccc6..69d41488568 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -123,6 +123,42 @@ run simple @code{argparse} parsers from function signatures.")
"Colorama is a Python library for rendering colored terminal text.")
(license license:bsd-3)))
+(define-public python-more-itertools
+ (package
+ (name "python-more-itertools")
+ (version "10.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "more-itertools" version))
+ (sha256
+ (base32
+ "0fzfnfga0jdx217kff57lx3pam76162i0dd0nsgwqccw038zmmrc"))
+ (snippet
+ ;; distutils.errors.DistutilsOptionError: No configuration found for
+ ;; dynamic 'description'. Some dynamic fields need to be specified via
+ ;; `tool.setuptools.dynamic`others must be specified via the equivalent
+ ;; attribute in `setup.py`.
+ '(delete-file "setup.py"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest")))))))
+ (native-inputs
+ (list python-flit-core))
+ (home-page "https://github.com/erikrose/more-itertools")
+ (synopsis "More routines for operating on iterables, beyond itertools")
+ (description "Python's built-in @code{itertools} module implements a
+number of iterator building blocks inspired by constructs from APL, Haskell,
+and SML. @code{more-itertools} includes additional building blocks for
+working with iterables.")
+ (license license:expat)))
+
(define-public python-pathspec
(package
(name "python-pathspec")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d0de0dbd7c1..3e2cc34092c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26498,42 +26498,6 @@ events on Linux.")
"This package provides, in addition to the @code{pyinotify} Python library,
a command line application exposing the same functionality.")))
-(define-public python-more-itertools
- (package
- (name "python-more-itertools")
- (version "10.6.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "more-itertools" version))
- (sha256
- (base32
- "0fzfnfga0jdx217kff57lx3pam76162i0dd0nsgwqccw038zmmrc"))
- (snippet
- ;; distutils.errors.DistutilsOptionError: No configuration found for
- ;; dynamic 'description'. Some dynamic fields need to be specified via
- ;; `tool.setuptools.dynamic`others must be specified via the equivalent
- ;; attribute in `setup.py`.
- '(delete-file "setup.py"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python" "-m" "unittest")))))))
- (native-inputs
- (list python-flit-core))
- (home-page "https://github.com/erikrose/more-itertools")
- (synopsis "More routines for operating on iterables, beyond itertools")
- (description "Python's built-in @code{itertools} module implements a
-number of iterator building blocks inspired by constructs from APL, Haskell,
-and SML. @code{more-itertools} includes additional building blocks for
-working with iterables.")
- (license license:expat)))
-
(define-public python-latex2pydata
(package
(name "python-latex2pydata")