summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-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.")
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
157number of iterator building blocks inspired by constructs from APL, Haskell,
158and SML. @code{more-itertools} includes additional building blocks for
159working 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,
26499a command line application exposing the same functionality."))) 26499a 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
26532number of iterator building blocks inspired by constructs from APL, Haskell,
26533and SML. @code{more-itertools} includes additional building blocks for
26534working 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")