guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7bed9bff6ad9fd24b3db1616c0ebb02dee03443e
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Oct 8 23:36:46 2025 +0200

    gnu: python-papermill: Remove development inputs.
    
    * gnu/packages/jupyter.scm (python-papermill)[native-inputs]: Remove
    python-black, python-bumpversion, python-check-manifest,
    python-codecov, python-coverage, python-pytest-cov, python-tox,
    python-twine and python-wheel.
    [source]: Switch to git-fetch.
    
    Change-Id: Ibe48a8b34a007a21c3d94f290334d8c3f0e462b0
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/jupyter.scm | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index cebf4b8635..54288238b4 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -1351,10 +1351,13 @@ datasets across widgets.")
     (version "2.6.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "papermill" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/nteract/papermill";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "097ai2n7f72a7hya9qnds3f28cg70p8xdj2c3cwqymzx28cskqlz"))))
+        (base32 "1i5zikvl9inficryqfz0v885v24pcs78cj5nzyjw0x232kxbj41p"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -1375,27 +1378,18 @@ datasets across widgets.")
                              python-tenacity
                              python-tqdm))
     (native-inputs (list python-attrs
-                         python-black
                          python-boto3
                          python-botocore
-                         python-bumpversion
-                         python-check-manifest
-                         python-codecov
-                         python-coverage
                          python-ipython
                          python-ipywidgets
                          python-moto
                          python-notebook
                          python-pytest
-                         python-pytest-cov
                          python-pytest-env
                          python-pytest-mock
                          python-recommonmark
                          python-requests
-                         python-setuptools
-                         python-tox
-                         python-twine
-                         python-wheel))
+                         python-setuptools))
     (home-page "https://github.com/nteract/papermill";)
     (synopsis "Parameterize and run Jupyter and nteract Notebooks")
     (description "Papermill is a tool for parameterizing, executing, and

Reply via email to