Merge branch 'master' into core-updates

This commit is contained in:
Marius Bakke 2019-07-22 18:58:48 +02:00
commit ccad0e4d69
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
42 changed files with 1493 additions and 287 deletions

View file

@ -3156,6 +3156,13 @@ and is very extensible.")
(base32
"0crland0kmpsyjfmnflcw7gaqy5b87b6ah17cmr9d5z1kyazf54n"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(with-directory-excursion "tests"
(invoke "sh" "runtests")))))))
(home-page "http://projectmallard.org")
(synopsis "Convert Ducktype to Mallard documentation markup")
(description
@ -5175,7 +5182,19 @@ without using the configuration machinery.")
;; Tests fail because of missing native python kernel which I assume is
;; provided by the ipython package, which we cannot use because it would
;; cause a dependency cycle.
(arguments `(#:tests? #f))
(arguments
`(#:tests? #f
#:phases (modify-phases %standard-phases
(add-after 'unpack 'set-tool-file-names
(lambda* (#:key inputs #:allow-other-keys)
(let ((iproute (assoc-ref inputs "iproute")))
(substitute* "jupyter_client/localinterfaces.py"
(("'ip'")
(string-append "'" iproute "/sbin/ip'")))
#t))))))
(inputs
`(("iproute" ,iproute)))
(propagated-inputs
`(("python-pyzmq" ,python-pyzmq)
("python-traitlets" ,python-traitlets)