rekado pushed a commit to branch master
in repository guix.
commit 3d388fe3d0475f2e991ae061cc1364529a97af42
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Dec 7 10:58:08 2022 +0100
gnu: python-graphviz: Update to 0.20.1.
* gnu/packages/graphviz.scm (python-graphviz): Update to 0.20.1.
[build-system]: Use pyproject-build-system.
[arguments]: Remove custom "check" phase; add "prepare-check" phase.
[native-inputs]: Remove python-mock.
---
gnu/packages/graphviz.scm | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index 51c1de3932..7c2cb1eae0 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2013, 2015, 2021 Ludovic Courtès <[email protected]>
;;; Copyright © 2015, 2020 Efraim Flashner <[email protected]>
;;; Copyright © 2016 Theodoros Foradis <[email protected]>
-;;; Copyright © 2017, 2018, 2019 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2017, 2018, 2019, 2022 Ricardo Wurmus <[email protected]>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2017 Gábor Boskovits <[email protected]>
;;; Copyright © 2018 Mathieu Lirzin <[email protected]>
@@ -32,6 +32,7 @@
(define-module (gnu packages graphviz)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix git-download)
@@ -180,27 +181,25 @@ interfaces for other technical domains.")
(define-public python-graphviz
(package
(name "python-graphviz")
- (version "0.13.2")
+ (version "0.20.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "graphviz" version ".zip"))
(sha256
(base32
- "009alrilzx0v7kl41khbq7k6k8b8pxyvbsi1b1ai933f6kpbxb30"))))
- (build-system python-build-system)
+ "1y1b956r01kg7qarkkrivhn71q64k0gbq6bcybd4gfd3v95g2n4c"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests #:allow-other-keys)
- (if tests
- (invoke "pytest" "-vv")
- (format #t "test suite not run~%"))
- #t)))))
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (add-before 'check 'prepare-chec
+ ;; Needed for fontconfig cache directories
+ (lambda _ (setenv "HOME" (getcwd)))))))
(native-inputs
(list unzip
;; For tests.
graphviz
- python-mock
python-pytest
python-pytest-cov
python-pytest-mock))