mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 09:43:43 -05:00
gnu: python-nbformat: Update to 5.3.0.
* gnu/packages/python-xyz.scm (python-nbformat): Update to 5.3.0. [source]: Adjust git URL. [native-inputs]: Move python-fastjsonschema to... [propagated-inputs]: ... here. Remove python-ipython-genutils.
This commit is contained in:
parent
1c8264d62e
commit
7cab14c336
1 changed files with 4 additions and 7 deletions
|
@ -12816,16 +12816,16 @@ (define-public python-fastjsonschema
|
||||||
(define-public python-nbformat
|
(define-public python-nbformat
|
||||||
(package
|
(package
|
||||||
(name "python-nbformat")
|
(name "python-nbformat")
|
||||||
(version "5.1.3")
|
(version "5.3.0")
|
||||||
;; The PyPi release tarball lacks some test cases and test data.
|
;; The PyPi release tarball lacks some test cases and test data.
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/jupyter/nbformat.git")
|
(url "https://github.com/jupyter/nbformat")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"033v16cfmxzh3jn5phnil4p3silr49iwh9wiigzhv0crc6sanvwz"))
|
"114c5c6cvpxhxj8zrw74351gcfzyzjh1jq3py4xf8wk9rahfay9z"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -12836,13 +12836,10 @@ (define-public python-nbformat
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest" "-vv")))))))
|
(invoke "pytest" "-vv")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-ipython-genutils python-jsonschema python-jupyter-core
|
(list python-fastjsonschema python-jsonschema python-jupyter-core
|
||||||
python-traitlets))
|
python-traitlets))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest
|
(list python-pytest
|
||||||
python-fastjsonschema ; This is only active
|
|
||||||
; when setting NBFORMAT_VALIDATOR="fastjsonschema", so include it for
|
|
||||||
; testing only.
|
|
||||||
python-testpath))
|
python-testpath))
|
||||||
(home-page "https://jupyter.org")
|
(home-page "https://jupyter.org")
|
||||||
(synopsis "Jupyter Notebook format")
|
(synopsis "Jupyter Notebook format")
|
||||||
|
|
Loading…
Reference in a new issue