[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
88/107: gnu: python-prov: Update to 2.0.1.
From: |
guix-commits |
Subject: |
88/107: gnu: python-prov: Update to 2.0.1. |
Date: |
Wed, 1 Jan 2025 12:49:08 -0500 (EST) |
rekado pushed a commit to branch python-team
in repository guix.
commit 8b2b0b0bb50d432e0041160f295bdf26d58b46a2
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Dec 27 22:19:40 2024 +0100
gnu: python-prov: Update to 2.0.1.
* gnu/packages/python-xyz.scm (python-prov): Update to 2.0.1.
[build-system]: Use pyproject-build-system.
[arguments]: Remove 'fix-rdflib-6-compatibility phase; add custom 'check
phase.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ia5e0ed1ee6e9476f317b345234018f2391cc3e98
---
gnu/packages/python-xyz.scm | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 547b5cbf16..2430ff2cca 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26341,29 +26341,33 @@ in pure Python.")
(define-public python-prov
(package
(name "python-prov")
- (version "2.0.0")
+ (version "2.0.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "prov" version))
(sha256
(base32
- "1vi2fj31vygfcqrkimdmk52q2ldw08g9fn4v4zlgdfgcjlhqyhxn"))))
- (build-system python-build-system)
+ "0zv1lllrm8ck0vnb5ym7s3cvyykg7pbvdcrrpmr5r9fi0la8q8qf"))))
+ (build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'fix-rdflib-6-compatibility
- (lambda _
- ;; See https://github.com/trungdong/prov/issues/151
- (substitute* "src/prov/tests/test_rdf.py"
- (("\\.serialize\\(format=\"nt\"\\)")
- ".serialize(format=\"nt\", encoding=\"utf-8\")")))))))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "setup.py" "test")))))))
(propagated-inputs
- (list python-dateutil python-lxml python-networkx python-rdflib-6))
+ (list python-dateutil
+ python-lxml
+ python-networkx
+ python-rdflib-6))
(native-inputs
- (list graphviz python-pydot))
+ (list graphviz
+ python-pydot
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/trungdong/prov")
(synopsis
"W3C Provenance Data Model supporting PROV-JSON, PROV-XML and PROV-O
(RDF)")
- 99/107: gnu: python-ipydatawidgets: Disable more tests and add inputs., (continued)
- 99/107: gnu: python-ipydatawidgets: Disable more tests and add inputs., guix-commits, 2025/01/01
- 103/107: gnu: python-openapi-core: Update to 0.19.4., guix-commits, 2025/01/01
- 21/107: gnu: Add python-lazy., guix-commits, 2025/01/01
- 20/107: gnu: Add python-packaging-legacy., guix-commits, 2025/01/01
- 27/107: gnu: python-tox: Update to 4.23.2., guix-commits, 2025/01/01
- 31/107: gnu: python-py2bit: Use pyproject-build-system., guix-commits, 2025/01/01
- 47/107: gnu: python-joblib: Disable one additional test., guix-commits, 2025/01/01
- 48/107: gnu: python-pydevd: Disable CI tests., guix-commits, 2025/01/01
- 66/107: gnu: python-hmmlearn: Add missing inputs., guix-commits, 2025/01/01
- 87/107: gnu: python-rdflib-6: Accept newer isodate., guix-commits, 2025/01/01
- 88/107: gnu: python-prov: Update to 2.0.1.,
guix-commits <=
- 96/107: gnu: python-trio: Update to 0.28.0., guix-commits, 2025/01/01
- 98/107: gnu: python-dnspython: Disable ECDSA tests., guix-commits, 2025/01/01
- 100/107: gnu: python-testtools: Update to 2.7.2., guix-commits, 2025/01/01
- 15/107: gnu: python-awkward: Update to 2.7.2., guix-commits, 2025/01/01
- 25/107: gnu: Add python-devpi-client., guix-commits, 2025/01/01
- 26/107: gnu: Add python-devpi-process., guix-commits, 2025/01/01
- 29/107: gnu: python-zarr: Update to 2.18.4., guix-commits, 2025/01/01
- 36/107: gnu: python-virtualenv: Update to 20.28.0., guix-commits, 2025/01/01
- 46/107: gnu: python-starlette: Update to 0.42.0., guix-commits, 2025/01/01
- 41/107: gnu: python-httpx: Update to 0.28.1., guix-commits, 2025/01/01