mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'master' into core-updates
This commit is contained in:
commit
ccad0e4d69
42 changed files with 1493 additions and 287 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue