summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 02:28:15 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:22 +0100
commit9765d15962cd15b1d5f05b3d4aceefe705432fbd (patch)
tree647aad692cdc9b15db09f77088f5482dedd0f60e
parente53af3c80173f68b09d65956e660daab61d8eda6 (diff)
gnu: python-backports-tarfile: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-backports-tarfile): Move from here… * gnu/packages/python-build.scm (python-backports-tarfile): …to here. Change-Id: I08fad809bc89251a8b23fe3f13801623db0c16b9 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-build.scm21
-rw-r--r--gnu/packages/python-xyz.scm22
2 files changed, 21 insertions, 22 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index d0c33e905da..5259706ccc6 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -82,6 +82,27 @@
82run simple @code{argparse} parsers from function signatures.") 82run simple @code{argparse} parsers from function signatures.")
83 (license license:lgpl3+))) 83 (license license:lgpl3+)))
84 84
85(define-public python-backports-tarfile
86 (package
87 (name "python-backports-tarfile")
88 (version "1.2.0")
89 (source
90 (origin
91 (method url-fetch)
92 (uri (pypi-uri "backports_tarfile" version))
93 (sha256
94 (base32 "14d9xibla5aahjqf9y0nmpk5vs4qds5rfy628j0invkld3104pnp"))))
95 (build-system pyproject-build-system)
96 (arguments
97 (list #:tests? #f)) ;XXX: Cycles with python-jaraco-context
98 (native-inputs
99 (list python-setuptools-bootstrap
100 python-setuptools-scm-bootstrap))
101 (home-page "https://github.com/jaraco/backports.tarfile")
102 (synopsis "Backport of CPython tarfile module")
103 (description "This package provides a backport of CPython tarfile module.")
104 (license license:expat)))
105
85(define-public python-colorama 106(define-public python-colorama
86 (package 107 (package
87 (name "python-colorama") 108 (name "python-colorama")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 49c4e518273..d0de0dbd7c1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -586,28 +586,6 @@ including arbitrary-length lists, records, mixed types, and missing data,
586using NumPy-like idioms.") 586using NumPy-like idioms.")
587 (license license:bsd-3))) 587 (license license:bsd-3)))
588 588
589(define-public python-backports-tarfile
590 (package
591 (name "python-backports-tarfile")
592 (version "1.2.0")
593 (source
594 (origin
595 (method url-fetch)
596 (uri (pypi-uri "backports_tarfile" version))
597 (sha256
598 (base32 "14d9xibla5aahjqf9y0nmpk5vs4qds5rfy628j0invkld3104pnp"))))
599 (build-system pyproject-build-system)
600 (arguments
601 (list #:tests? #f)) ;XXX: Cycles with python-jaraco-context
602 (native-inputs
603 (list python-setuptools
604 python-setuptools-scm
605 python-wheel))
606 (home-page "https://github.com/jaraco/backports.tarfile")
607 (synopsis "Backport of CPython tarfile module")
608 (description "This package provides a backport of CPython tarfile module.")
609 (license license:expat)))
610
611(define-public python-bresenham 589(define-public python-bresenham
612 (package 590 (package
613 (name "python-bresenham") 591 (name "python-bresenham")