[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#77246] [PATCH 12/18] gnu: Add python-unix-ar.
From: |
Nicolas Graves |
Subject: |
[bug#77246] [PATCH 12/18] gnu: Add python-unix-ar. |
Date: |
Tue, 25 Mar 2025 08:56:48 +0100 |
* gnu/packages/python-compression.scm (python-unix-ar): New variable.
---
gnu/packages/python-compression.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-compression.scm
b/gnu/packages/python-compression.scm
index 5b994d408f..6892b9253c 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2024 TakeV <takev@disroot.org>
;;; Copyright © 2023 Ivan Vilata i Balaguer <ivan@selidor.net>
;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -764,6 +765,33 @@ (define-public bitshuffle-for-snappy
(inputs '())
(native-inputs '())))
+(define-public python-unix-ar
+ (package
+ (name "python-unix-ar")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "unix_ar" version))
+ (sha256
+ (base32 "0kicwxsh28x8r34a7cgzv2i65gsd4qjw2vf29pwq4fpsf3n2i4xz"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; These tests have timestamp-related issues.
+ (list #:test-flags
+ #~(list "-m" "unittest" "-k" "not test_add and not test_addfile")
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
+ (apply invoke "python" test-flags))))))
+ (native-inputs (list python-pytest python-setuptools python-wheel))
+ (home-page "https://github.com/getninjas/unix_ar")
+ (synopsis "AR file handling in Python")
+ (description "This package provides utilities to handle AR files in
+Python.")
+ (license license:bsd-3)))
+
(define-public python-zipp
(package
(name "python-zipp")
--
2.49.0
- [bug#77246] [PATCH python-team 00/18] One more iteration with a few fixes, Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 01/18] gnu: python-biom-format: Update to 2.1.16., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 03/18] gnu: python-cleanlab: Update to 2.7.1., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 04/18] gnu: python-cesium: Move to (gnu packages astronomy)., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 06/18] gnu: crossmap: Add missing python-pyparsing native-input., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 08/18] gnu: python-ncls: Update to 0.0.68., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 09/18] gnu: python-nptyping: Ignore failing test., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 02/18] gnu: pairadise: Add missing native-inputs., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 07/18] gnu: python-cell2cell: Update to 0.7.4., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 05/18] gnu: python-bx-python: Update to 0.13.0., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 12/18] gnu: Add python-unix-ar.,
Nicolas Graves <=
- [bug#77246] [PATCH 13/18] gnu: pwntools: Update to 4.4.0., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 16/18] gnu: python-netaddr: Move to (gnu packages python-web)., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 15/18] gnu: Standardize python-oslo.* package names., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 11/18] gnu: Add python-colored-traceback., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 14/18] gnu: python-debtcollector: Update to 3.0.0., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 18/18] gnu: python-aiosmtpd: Update to 1.4.6., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 17/18] gnu: python-netaddr: Update to 1.3.0., Nicolas Graves, 2025/03/25
- [bug#77246] [PATCH 10/18] gnu: python-pegasusio: Update to 0.9.1., Nicolas Graves, 2025/03/25
- bug#77246: [PATCH python-team 00/18] One more iteration with a few fixes, Sharlatan Hellseher, 2025/03/25