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.")
;; This one fails with "Unexpected argument of type <class 'tuple'>".
"--ignore=tests/test_typeguard.py"
;; This one runs pip and fails.
- "--ignore=tests/test_wheel.py")
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'build 'set-source-date-epoch
- (lambda _
- ;; Otherwise the wheel building test would fail with "ZIP does
- ;; not support timestamps before 1980".
- (setenv "SOURCE_DATE_EPOCH" "315532800"))))))
+ "--ignore=tests/test_wheel.py")))
(native-inputs
(list python-beartype
python-feedparser
python-pandas
python-pytest
python-setuptools
- python-typeguard
- python-wheel))
+ python-typeguard))
(propagated-inputs
- (list python-numpy
+ (list python-numpy-1
python-typing-extensions
python-pandas-stubs))
(home-page "https://github.com/ramonhagenaars/nptyping")