guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: Add python-nbstripout.


From: guix-commits
Subject: 04/07: gnu: Add python-nbstripout.
Date: Fri, 8 Jul 2022 12:42:12 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 22e223e4890ea95c6fb526c52b067497cdcce0c7
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Jul 7 14:55:54 2022 +0200

    gnu: Add python-nbstripout.
    
    * gnu/packages/jupyter.scm (python-nbstripout): New variable.
---
 gnu/packages/jupyter.scm | 40 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 441e19bf47..20c72a7437 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2019, 2022 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
 ;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
@@ -521,6 +521,44 @@ nbshow present a single notebook in a terminal-friendly way
 @end table")
     (license license:bsd-3)))
 
+(define-public python-nbstripout
+  (package
+    (name "python-nbstripout")
+    (version "0.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "nbstripout" version))
+              (sha256
+               (base32
+                "1n57nvxsc94gz9w8ymi83bjkfhfwkpmx4y14m6gjrmlqd49m1aw6"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'delete-bad-tests
+           (lambda _
+             ;; These tests use git and hg, and they are sensitive to the
+             ;; exact printed output.
+             (for-each delete-file (list "tests/test-git.t"
+                                         "tests/test-hg.t"
+                                         "tests/test-status.t"
+                                         "tests/test-uninstall.t"))))
+         (add-before 'check 'set-CRAMSHELL
+           (lambda _
+             (setenv "CRAMSHELL" (which "bash")))))))
+    (propagated-inputs (list python-nbformat))
+    (native-inputs
+     (list python-pytest
+           python-pytest-cram
+           python-pytest-flake8
+           python-pytest-runner))
+    (home-page "https://github.com/kynan/nbstripout";)
+    (synopsis "Strips outputs from Jupyter and IPython notebooks")
+    (description
+     "This package opens a notebook, strips its output, and writes the 
outputless
+version to the original file.")
+    (license license:expat)))
+
 (define-public repo2docker
   (package
     (name "repo2docker")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]