mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add nbss-upload.
* gnu/packages/python-xyz.scm (nbss-upload): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
d0744d8650
commit
e22957fc15
1 changed files with 22 additions and 0 deletions
|
@ -28663,6 +28663,28 @@ (define-public nikola
|
|||
and has plugins for many other formats.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public nbss-upload
|
||||
(package
|
||||
(name "nbss-upload")
|
||||
(version "0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "nbss-upload" version))
|
||||
(sha256
|
||||
(base32 "0jhyfm7w2ssknmh9789fmpnf79xr7sxbdcjwak6hfha6qparvk38"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
(list python-requests))
|
||||
(arguments
|
||||
`(#:tests? #f)) ;no tests
|
||||
(home-page "https://github.com/notebook-sharing-space/nbss-upload")
|
||||
(synopsis "Upload notebooks to a notebooksharing.space instance")
|
||||
(description
|
||||
"Upload notebooks as @code{.ipynb}, @code{.rmd}, and @code{.html} to a
|
||||
notebooksharing.space instance.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-reedsolo
|
||||
(package
|
||||
(name "python-reedsolo")
|
||||
|
|
Loading…
Reference in a new issue