summaryrefslogtreecommitdiff
path: root/gnu/packages
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 /gnu/packages
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>
Diffstat (limited to 'gnu/packages')
-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 @@
run simple @code{argparse} parsers from function signatures.")
(license license:lgpl3+)))
+(define-public python-backports-tarfile
+ (package
+ (name "python-backports-tarfile")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "backports_tarfile" version))
+ (sha256
+ (base32 "14d9xibla5aahjqf9y0nmpk5vs4qds5rfy628j0invkld3104pnp"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;XXX: Cycles with python-jaraco-context
+ (native-inputs
+ (list python-setuptools-bootstrap
+ python-setuptools-scm-bootstrap))
+ (home-page "https://github.com/jaraco/backports.tarfile")
+ (synopsis "Backport of CPython tarfile module")
+ (description "This package provides a backport of CPython tarfile module.")
+ (license license:expat)))
+
(define-public python-colorama
(package
(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,
using NumPy-like idioms.")
(license license:bsd-3)))
-(define-public python-backports-tarfile
- (package
- (name "python-backports-tarfile")
- (version "1.2.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "backports_tarfile" version))
- (sha256
- (base32 "14d9xibla5aahjqf9y0nmpk5vs4qds5rfy628j0invkld3104pnp"))))
- (build-system pyproject-build-system)
- (arguments
- (list #:tests? #f)) ;XXX: Cycles with python-jaraco-context
- (native-inputs
- (list python-setuptools
- python-setuptools-scm
- python-wheel))
- (home-page "https://github.com/jaraco/backports.tarfile")
- (synopsis "Backport of CPython tarfile module")
- (description "This package provides a backport of CPython tarfile module.")
- (license license:expat)))
-
(define-public python-bresenham
(package
(name "python-bresenham")