mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 19:39:34 +01:00
gnu: Add python-pydot.
* gnu/packages/graphviz.scm (python-pydot, python2-pydot): New variables. Modified-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
38ad27da80
commit
2b295f5a2f
1 changed files with 28 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -41,6 +42,7 @@
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages gd)
|
#:use-module (gnu packages gd)
|
||||||
#:use-module (gnu packages swig)
|
#:use-module (gnu packages swig)
|
||||||
|
#:use-module (gnu packages python)
|
||||||
#:use-module ((guix licenses) #:prefix license:))
|
#:use-module ((guix licenses) #:prefix license:))
|
||||||
|
|
||||||
(define-public graphviz
|
(define-public graphviz
|
||||||
|
@ -211,3 +213,29 @@ visualization tool suite.")
|
||||||
an intermediate format,and @code{gtk} and @code{cairo} for rendering. Xdot can
|
an intermediate format,and @code{gtk} and @code{cairo} for rendering. Xdot can
|
||||||
be used either as a standalone application, or as a python library.")
|
be used either as a standalone application, or as a python library.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public python-pydot
|
||||||
|
(package
|
||||||
|
(name "python-pydot")
|
||||||
|
(version "1.2.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pydot" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00imlz0033dygb9gdag1xr0cybn33gk5jsdi9ffbszzr97rd7dgd"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
;; FIXME: No tests in PyPi release tarball.
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pyparsing" ,python-pyparsing)))
|
||||||
|
(home-page "https://github.com/erocarrera/pydot")
|
||||||
|
(synopsis "Python interface to Graphviz's DOT language")
|
||||||
|
(description
|
||||||
|
"Pydot provides an interface to create, handle, modify and process
|
||||||
|
graphs in Graphviz's DOT language, written in pure Python.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python2-pydot
|
||||||
|
(package-with-python2 python-pydot))
|
||||||
|
|
Loading…
Add table
Reference in a new issue