diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-21 15:53:03 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:46:08 -0400 |
commit | a7e5a116fd9088bbcac0af71546966d8352491b1 (patch) | |
tree | c8d8a12cf50809bdff659263fc31f2244297bbbe | |
parent | 418630a63c26bf683bb215fe2f655485f07020ea (diff) | |
download | guix-a7e5a116fd9088bbcac0af71546966d8352491b1.tar guix-a7e5a116fd9088bbcac0af71546966d8352491b1.tar.gz |
gnu: python-numpydoc: Update to 1.2.1.
* gnu/packages/python-xyz.scm (python-numpydoc): Update to 1.2.1. Fix
indentation.
[phases]{relax-requirements}: New phase.
[propagated-inputs]: Add python-jinja2.
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8b55e67ca9..ea1fb174c4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6438,34 +6438,34 @@ parse and apply unified diffs. It has features such as: (define-public python-numpydoc (package (name "python-numpydoc") - (version "1.1.0") + (version "1.2.1") (source (origin (method url-fetch) (uri (pypi-uri "numpydoc" version)) (sha256 (base32 - "13j4fvy2p7lc8sn00sxvs0jb19vicaznfgx4cphv9jgxgz5xcvy3")))) + "1xjsli2fqks4iv3524v1d329siad7bbsi4kr174zvhsl1pnjds3w")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.py" + (("'Jinja2>=2.10,<3.1'") + "'Jinja2>=2.10'")))) (replace 'check - (lambda* (#:key tests? inputs outputs #:allow-other-keys) + (lambda* (#:key tests? #:allow-other-keys) (when tests? - (add-installed-pythonpath inputs outputs) (invoke "pytest" "-v" "numpydoc/tests" ;; TODO: unclear why these fail. "-k" "not test_MyClass and not test_my_function"))))))) - (propagated-inputs - (list python-sphinx)) - (native-inputs - (list python-matplotlib python-pytest python-pytest-cov)) + (propagated-inputs (list python-jinja2 python-sphinx)) + (native-inputs (list python-matplotlib python-pytest python-pytest-cov)) (home-page "https://pypi.org/project/numpydoc/") - (synopsis - "Numpy's Sphinx extensions") - (description - "Sphinx extension to support docstrings in Numpy format.") + (synopsis "Numpy's Sphinx extensions") + (description "Sphinx extension to support docstrings in Numpy format.") (license license:bsd-2) (properties `((python2-variant . ,(delay python2-numpydoc)))))) |