aboutsummaryrefslogtreecommitdiff
path: root/gn
diff options
context:
space:
mode:
authorjgart2022-04-14 22:30:24 -0400
committerjgart2022-04-14 22:31:10 -0400
commit65edff19bad5b298a5d082b527781ba55d09909a (patch)
tree3247b30482467392f2d23d519e68d6b1f19936ca /gn
parente023f6bd066f8b228f58e34e95337f80f2694d9b (diff)
downloadguix-bioinformatics-65edff19bad5b298a5d082b527781ba55d09909a.tar.gz
notebooks: move nb-upload
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/binderlite.scm30
-rw-r--r--gn/packages/notebooks.scm44
2 files changed, 44 insertions, 30 deletions
diff --git a/gn/packages/binderlite.scm b/gn/packages/binderlite.scm
index f3dddb9..8010e41 100644
--- a/gn/packages/binderlite.scm
+++ b/gn/packages/binderlite.scm
@@ -35,33 +35,3 @@
will be rewritten in Common Lisp. If we stay with Python I recommend
switching this library out for @code{python-furl} or similar."))))
-(define-public nb-upload
- (let ((commit "b2853028a2ef2b1670074aa08c9e25d799ba4cb4")
- (revision "2"))
- (package
- (name "nb-upload")
- (version (git-version "20220414" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.genenetwork.org/jgart/nb-upload")
- (commit commit)))
- (file-name (git-file-name name commit))
- (sha256
- (base32
- "1wdghsq4wj1bgcvxx604q7piknbwapj7facc1xfn1fqvw0cra7wg"))))
- (build-system python-build-system)
- (arguments
- (list #:tests? #f)) ; There are no tests.
- (inputs
- (list python-requests
- python-yaspin
- python-rich))
- (synopsis "Upload notebooks via CLI")
- (description
-"@code{nb-upload} allows a user to upload notebooks to a @code{nb}
-instance.")
- (home-page "https://git.genenetwork.org/jgart/nb-upload/")
- (license license:unlicense))))
-
diff --git a/gn/packages/notebooks.scm b/gn/packages/notebooks.scm
new file mode 100644
index 0000000..cd35124
--- /dev/null
+++ b/gn/packages/notebooks.scm
@@ -0,0 +1,44 @@
+(define-module (gn packages notebooks)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix utils)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system python)
+ #:use-module (guix build-system asdf)
+ #:use-module (gnu packages python-web)
+ #:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages lisp-check)
+ #:use-module (gnu packages lisp-xyz)
+ #:use-module (gnu packages))
+
+(define-public nb-upload
+ (let ((commit "b2853028a2ef2b1670074aa08c9e25d799ba4cb4")
+ (revision "2"))
+ (package
+ (name "nb-upload")
+ (version (git-version "20220414" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.genenetwork.org/jgart/nb-upload")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32
+ "1wdghsq4wj1bgcvxx604q7piknbwapj7facc1xfn1fqvw0cra7wg"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:tests? #f)) ; There are no tests.
+ (inputs
+ (list python-requests
+ python-yaspin
+ python-rich))
+ (synopsis "Upload notebooks via CLI")
+ (description
+"@code{nb-upload} allows a user to upload notebooks to a @code{nb}
+instance.")
+ (home-page "https://git.genenetwork.org/jgart/nb-upload/")
+ (license license:unlicense))))
+