diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-31 02:31:13 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:22 +0100 |
| commit | 8b30c24930ae8a8fa73129f5ced01130cee5c341 (patch) | |
| tree | abffe08ccfb156e01e2426fcdf9c31791ef912b1 /gnu | |
| parent | 9765d15962cd15b1d5f05b3d4aceefe705432fbd (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>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-build.scm | 36 | ||||
| -rw-r--r-- | gnu/packages/python-xyz.scm | 36 |
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.") | |||
| 123 | "Colorama is a Python library for rendering colored terminal text.") | 123 | "Colorama is a Python library for rendering colored terminal text.") |
| 124 | (license license:bsd-3))) | 124 | (license license:bsd-3))) |
| 125 | 125 | ||
| 126 | (define-public python-more-itertools | ||
| 127 | (package | ||
| 128 | (name "python-more-itertools") | ||
| 129 | (version "10.6.0") | ||
| 130 | (source | ||
| 131 | (origin | ||
| 132 | (method url-fetch) | ||
| 133 | (uri (pypi-uri "more-itertools" version)) | ||
| 134 | (sha256 | ||
| 135 | (base32 | ||
| 136 | "0fzfnfga0jdx217kff57lx3pam76162i0dd0nsgwqccw038zmmrc")) | ||
| 137 | (snippet | ||
| 138 | ;; distutils.errors.DistutilsOptionError: No configuration found for | ||
| 139 | ;; dynamic 'description'. Some dynamic fields need to be specified via | ||
| 140 | ;; `tool.setuptools.dynamic`others must be specified via the equivalent | ||
| 141 | ;; attribute in `setup.py`. | ||
| 142 | '(delete-file "setup.py")))) | ||
| 143 | (build-system pyproject-build-system) | ||
| 144 | (arguments | ||
| 145 | (list | ||
| 146 | #:phases | ||
| 147 | #~(modify-phases %standard-phases | ||
| 148 | (replace 'check | ||
| 149 | (lambda* (#:key tests? #:allow-other-keys) | ||
| 150 | (when tests? | ||
| 151 | (invoke "python" "-m" "unittest"))))))) | ||
| 152 | (native-inputs | ||
| 153 | (list python-flit-core)) | ||
| 154 | (home-page "https://github.com/erikrose/more-itertools") | ||
| 155 | (synopsis "More routines for operating on iterables, beyond itertools") | ||
| 156 | (description "Python's built-in @code{itertools} module implements a | ||
| 157 | number of iterator building blocks inspired by constructs from APL, Haskell, | ||
| 158 | and SML. @code{more-itertools} includes additional building blocks for | ||
| 159 | working with iterables.") | ||
| 160 | (license license:expat))) | ||
| 161 | |||
| 126 | (define-public python-pathspec | 162 | (define-public python-pathspec |
| 127 | (package | 163 | (package |
| 128 | (name "python-pathspec") | 164 | (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.") | |||
| 26498 | "This package provides, in addition to the @code{pyinotify} Python library, | 26498 | "This package provides, in addition to the @code{pyinotify} Python library, |
| 26499 | a command line application exposing the same functionality."))) | 26499 | a command line application exposing the same functionality."))) |
| 26500 | 26500 | ||
| 26501 | (define-public python-more-itertools | ||
| 26502 | (package | ||
| 26503 | (name "python-more-itertools") | ||
| 26504 | (version "10.6.0") | ||
| 26505 | (source | ||
| 26506 | (origin | ||
| 26507 | (method url-fetch) | ||
| 26508 | (uri (pypi-uri "more-itertools" version)) | ||
| 26509 | (sha256 | ||
| 26510 | (base32 | ||
| 26511 | "0fzfnfga0jdx217kff57lx3pam76162i0dd0nsgwqccw038zmmrc")) | ||
| 26512 | (snippet | ||
| 26513 | ;; distutils.errors.DistutilsOptionError: No configuration found for | ||
| 26514 | ;; dynamic 'description'. Some dynamic fields need to be specified via | ||
| 26515 | ;; `tool.setuptools.dynamic`others must be specified via the equivalent | ||
| 26516 | ;; attribute in `setup.py`. | ||
| 26517 | '(delete-file "setup.py")))) | ||
| 26518 | (build-system pyproject-build-system) | ||
| 26519 | (arguments | ||
| 26520 | (list | ||
| 26521 | #:phases | ||
| 26522 | #~(modify-phases %standard-phases | ||
| 26523 | (replace 'check | ||
| 26524 | (lambda* (#:key tests? #:allow-other-keys) | ||
| 26525 | (when tests? | ||
| 26526 | (invoke "python" "-m" "unittest"))))))) | ||
| 26527 | (native-inputs | ||
| 26528 | (list python-flit-core)) | ||
| 26529 | (home-page "https://github.com/erikrose/more-itertools") | ||
| 26530 | (synopsis "More routines for operating on iterables, beyond itertools") | ||
| 26531 | (description "Python's built-in @code{itertools} module implements a | ||
| 26532 | number of iterator building blocks inspired by constructs from APL, Haskell, | ||
| 26533 | and SML. @code{more-itertools} includes additional building blocks for | ||
| 26534 | working with iterables.") | ||
| 26535 | (license license:expat))) | ||
| 26536 | |||
| 26537 | (define-public python-latex2pydata | 26501 | (define-public python-latex2pydata |
| 26538 | (package | 26502 | (package |
| 26539 | (name "python-latex2pydata") | 26503 | (name "python-latex2pydata") |
