gnu: python-pydot: Update to 1.2.4.

* gnu/packages/graphviz.scm (python-pydot): Update to 1.2.4.
[arguments]: Run the test suite.
[native-inputs]: Add python-chardet.
This commit is contained in:
Tobias Geerinckx-Rice 2018-09-21 08:46:11 +02:00
parent 1779aaa09a
commit 29ddbc5607
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 5 additions and 4 deletions

View File

@ -220,17 +220,18 @@ be used either as a standalone application, or as a python library.")
(define-public python-pydot (define-public python-pydot
(package (package
(name "python-pydot") (name "python-pydot")
(version "1.2.3") (version "1.2.4")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pydot" version)) (uri (pypi-uri "pydot" version))
(sha256 (sha256
(base32 (base32
"00imlz0033dygb9gdag1xr0cybn33gk5jsdi9ffbszzr97rd7dgd")))) "1dhy4jpp646jslh2yks6klwwbaxcs905byyny880gl1iap8y5llj"))))
(build-system python-build-system) (build-system python-build-system)
;; FIXME: No tests in PyPi release tarball. (native-inputs
(arguments '(#:tests? #f)) ;; For tests.
`(("python-chardet" ,python-chardet)))
(propagated-inputs (propagated-inputs
`(("python-pyparsing" ,python-pyparsing))) `(("python-pyparsing" ,python-pyparsing)))
(home-page "https://github.com/erocarrera/pydot") (home-page "https://github.com/erocarrera/pydot")