summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-09 16:51:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-09 22:35:00 +0100
commitb495f3bfacd677f2c23ac37ad6e76a84ed10763e (patch)
tree4dd23163e5f6cd0f201a1bb06d2129c4fea0f2c5
parentf00571cfbbc2dfd0b9f54b94d1f8fe7e2ff83480 (diff)
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
-rw-r--r--gnu/packages/graphviz.scm27
1 files changed, 16 insertions, 11 deletions
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index 896ce82cb3e..40a5cf74011 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