sharlatan pushed a commit to branch master in repository guix. commit b495f3bfacd677f2c23ac37ad6e76a84ed10763e Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri May 9 16:51:27 2025 +0100
gnu: python-pygraphviz: Update to 1.14. * gnu/packages/graphviz.scm (python-pygraphviz): Update to 1.14. [build-system]: Switch to pyproject. [native-inputs]: Remove python-nose and python-doctest-ignore-unicode; add python-setuptools and python-wheel. [description]: Start from a new line and apply fill paragraph. Change-Id: Ie363cc2c5628c5f7f032e2b9c6a886908f67d222 --- gnu/packages/graphviz.scm | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm index 896ce82cb3..40a5cf7401 100644 --- a/gnu/packages/graphviz.scm +++ b/gnu/packages/graphviz.scm @@ -181,7 +181,7 @@ visualization tool suite.") (define-public python-pygraphviz (package (name "python-pygraphviz") - (version "1.10") + (version "1.14") (source (origin (method git-fetch) @@ -190,20 +190,25 @@ visualization tool suite.") (commit (string-append "pygraphviz-" version)))) (file-name (string-append "pygraphviz-" version "-checkout")) (sha256 - (base32 - "1yrzjp5n86ynlj32p5dj1aj67md6bzkk8hac74j5y3mbl94m259g")))) - (build-system python-build-system) + (base32 "03q6k030nvrl30a86bgnjqjh1csh8zpw8dkgajkn33v3cx7jc9a7")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags #~(list "--pyargs" "pygraphviz"))) + (native-inputs + (list python-mock + python-pytest + python-setuptools + python-wheel)) (inputs (list graphviz)) - (native-inputs - (list python-nose python-mock python-pytest - python-doctest-ignore-unicode)) (home-page "https://pygraphviz.github.io") (synopsis "Python interface to Graphviz") - (description "PyGraphviz is a Python interface to the Graphviz graph -layout and visualization package. With PyGraphviz you can create, edit, read, -write, and draw graphs using Python to access the Graphviz graph data -structure and layout algorithms.") + (description + "PyGraphviz is a Python interface to the Graphviz graph layout and +visualization package. With PyGraphviz you can create, edit, read, write, and +draw graphs using Python to access the Graphviz graph data structure and +layout algorithms.") (license license:bsd-3))) (define-public python-uqbar