diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-16 20:59:32 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:45 +0100 |
| commit | 0a2117f8ddda0ec051f7232e5bd75b5a97aabd13 (patch) | |
| tree | 85c740c0615ad0bdecbee6af3300ca1311287712 /gnu/packages/python-xyz.scm | |
| parent | 79b1167f7421cff1c3b609368e652b41a5b2ddde (diff) | |
gnu: Add python-backports-tarfile.
* gnu/packages/python-xyz.scm (python-backports-tarfile): New variable.
Change-Id: I213e09fc93760ec0b6f21c8642efd765b9b2b528
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b47e806d38..49fe18565b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -581,6 +581,28 @@ 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") |
