guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit bfd1e981489866b964c6b58e77ba7ee4acb00efd
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 02:28:15 2025 +0100
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 <[email protected]>
---
gnu/packages/python-build.scm | 21 +++++++++++++++++++++
gnu/packages/python-xyz.scm | 22 ----------------------
2 files changed, 21 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 9d8c37c8d3..79c915e26d 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 74fbf8663e..f75798fbfc 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")