summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 12 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8ce5115ad74..45fefe58313 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11867,21 +11867,26 @@ apply unified diffs. It has features such as:
11867(define-public python-numpydoc 11867(define-public python-numpydoc
11868 (package 11868 (package
11869 (name "python-numpydoc") 11869 (name "python-numpydoc")
11870 (version "1.5.0") 11870 (version "1.10.0")
11871 (source 11871 (source
11872 (origin 11872 (origin
11873 (method url-fetch) 11873 (method url-fetch)
11874 (uri (pypi-uri "numpydoc" version)) 11874 (uri (pypi-uri "numpydoc" version))
11875 (sha256 11875 (sha256
11876 (base32 11876 (base32
11877 "0k2z3g4s3w39h1nd293542hl9qv55j29gcr3bkia0rr3ldsppnxh")))) 11877 "00gsbzpx7s3yq6g5c8k7rlq2hhx2pdraqcbb18k142g3xvv70y9z"))))
11878 (build-system pyproject-build-system) 11878 (build-system pyproject-build-system)
11879 (arguments 11879 (arguments
11880 (list #:test-flags 11880 (list
11881 '(list "numpydoc/tests" 11881 #:test-flags
11882 ;; TODO: unclear why these fail. 11882 '(list "numpydoc/tests"
11883 "-k" "not test_MyClass and not test_my_function"))) 11883 "-k" (string-append
11884 (propagated-inputs (list python-jinja2 python-sphinx)) 11884 ;; TODO: unclear why these fail.
11885 "not test_MyClass and not test_my_function "
11886 ;; This test compares installed vs source absolute file
11887 ;; names.
11888 "and not test_source_file_name_with_properties"))))
11889 (propagated-inputs (list python-sphinx python-tomli))
11885 (native-inputs 11890 (native-inputs
11886 (list python-matplotlib 11891 (list python-matplotlib
11887 python-pytest 11892 python-pytest