GNU bug report logs -
#52696
[PATCH 00/12] Update Orange.
Previous Next
Reported by: Vinicius Monego <monego <at> posteo.net>
Date: Tue, 21 Dec 2021 04:46:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
Full log
Message #20 received at 52696 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-dictdiffer): Update to 0.9.0.
[source]: Make some cosmetic changes.
[arguments]: Override 'check phase.
[native-inputs]: Remove python-check-manifest, python-coverage, python-isort,
python-pytest-cache, python-pytest-pep8, python-tox. Add python-pytest-isort,
python-pytest-pycodestyle, python-pytest-pydocstyle.
---
gnu/packages/python-xyz.scm | 35 ++++++++++++++++++++---------------
1 file changed, 20 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fb29708c02..18ca99cd8b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25094,27 +25094,32 @@ cryptographically signed ones).")
(define-public python-dictdiffer
(package
(name "python-dictdiffer")
- (version "0.8.1")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "dictdiffer" version))
- (sha256
- (base32
- "1lk3qmy1hkaphk4n7ayfk0wl6m2yvd6r7qkam6yncqfzgkbc1phs"))))
+ (version "0.9.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "dictdiffer" version))
+ (sha256
+ (base32 "0y3mk74qm2q9hsm37892i1wzn8bbdrvbs4nmnvqwq4z6pxgwzfhp"))))
(build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest")))))))
(native-inputs
- (list python-check-manifest
- python-coverage
- python-isort
- python-mock
+ (list python-mock
python-pydocstyle
- python-pytest-cache
python-pytest-cov
- python-pytest-pep8
+ python-pytest-isort
+ python-pytest-pycodestyle
+ python-pytest-pydocstyle
python-pytest-runner
python-pytest
- python-setuptools-scm
- python-tox))
+ python-setuptools-scm))
(home-page "https://github.com/inveniosoftware/dictdiffer")
(synopsis "Diff and patch Python dictionary objects")
(description
--
2.30.2
This bug report was last modified 3 years and 180 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.