summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-04 15:53:27 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:55 +0100
commit56dd654bea8028a50746b52e8df56b7be55d704b (patch)
treeb7d06cac9b93d5a51bf2bdcbb5dfddca0504c6db /gnu/packages/python-check.scm
parent8e8d18f61f029a83091be71b9b36110bde207718 (diff)
gnu: python-nptyping: Use python-numpy-1, fix build.
* gnu/packages/python-check.scm (python-nptyping): [phases]{set-source-date-epch}: Remove phase. [propagated-inputs]: Remove python-numpy; add python-numpy-1. [native-inputs]: Remove python-wheel. Change-Id: I37652688828425963004c22aff287f76e88f5be1
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm14
1 files changed, 3 insertions, 11 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 30e639307b4..267318aa91d 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1955,24 +1955,16 @@ Python file for configuration.")
1955 ;; This one fails with "Unexpected argument of type <class 'tuple'>". 1955 ;; This one fails with "Unexpected argument of type <class 'tuple'>".
1956 "--ignore=tests/test_typeguard.py" 1956 "--ignore=tests/test_typeguard.py"
1957 ;; This one runs pip and fails. 1957 ;; This one runs pip and fails.
1958 "--ignore=tests/test_wheel.py") 1958 "--ignore=tests/test_wheel.py")))
1959 #:phases
1960 #~(modify-phases %standard-phases
1961 (add-before 'build 'set-source-date-epoch
1962 (lambda _
1963 ;; Otherwise the wheel building test would fail with "ZIP does
1964 ;; not support timestamps before 1980".
1965 (setenv "SOURCE_DATE_EPOCH" "315532800"))))))
1966 (native-inputs 1959 (native-inputs
1967 (list python-beartype 1960 (list python-beartype
1968 python-feedparser 1961 python-feedparser
1969 python-pandas 1962 python-pandas
1970 python-pytest 1963 python-pytest
1971 python-setuptools 1964 python-setuptools
1972 python-typeguard 1965 python-typeguard))
1973 python-wheel))
1974 (propagated-inputs 1966 (propagated-inputs
1975 (list python-numpy 1967 (list python-numpy-1
1976 python-typing-extensions 1968 python-typing-extensions
1977 python-pandas-stubs)) 1969 python-pandas-stubs))
1978 (home-page "https://github.com/ramonhagenaars/nptyping") 1970 (home-page "https://github.com/ramonhagenaars/nptyping")