GNU bug report logs -
#76835
[PATCH python-team 00/15] Some further python fixes
Previous Next
Reported by: Nicolas Graves <ngraves <at> ngraves.fr>
Date: Fri, 7 Mar 2025 18:51:02 UTC
Severity: normal
Tags: patch
Done: Steve George <steve <at> futurile.net>
Bug is archived. No further changes may be made.
Full log
Message #197 received at 76835 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-dpath): Update to 2.2.0.
[source]: Switch to git-fetch.
[build-system]: Switch from python-build-system to
pyproject-build-system.
[native-inputs]: Remove python-mock. Replace python-nose by
python-nose2. Add python-setuptools and python-wheel.
---
gnu/packages/python-xyz.scm | 27 ++++++++++++---------------
1 file changed, 12 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ace13dd419..58b2436f7a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34488,25 +34488,22 @@ (define-public python-dparse
(define-public python-dpath
(package
(name "python-dpath")
- (version "2.0.1")
+ (version "2.2.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "dpath" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/akesterson/dpath-python")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1ymi9ssk7i0mx3mviplf4csfvzibdd6wyj4qzj6s487n9xgnp85y"))))
- (build-system python-build-system)
+ (base32 "1rxgkn2dzakwdw5idkx0092yrmf46zcqx3xp87xksvxpzbsvz4nf"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-hypothesis python-mock python-nose))
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- ;; This invocation is taken from tox.ini.
- (invoke "nosetests" "-d" "-v" "tests/"))))))
+ (list python-hypothesis
+ python-nose2
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/akesterson/dpath-python")
(synopsis "File-system-like pathing and searching for dictionaries")
(description
--
2.48.1
This bug report was last modified 88 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.