summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-02-11 10:16:18 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-11 10:56:12 +0100
commit55669ce9dc21282cd96148c96d17e049e98510f6 (patch)
tree92a9c8d4cd991a58e62c64506208e123b76a962a /gnu/packages/python-check.scm
parentae7f682c64ff6cd4eeb726399c06026bda33f294 (diff)
gnu: Remove python-nptyping.
* gnu/packages/python-check.scm (python-nptyping): Delete variable. Fixes: guix/guix#5525 Change-Id: I48c8f86a994e184c7faae5ae64b3ba2503466216
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm48
1 files changed, 0 insertions, 48 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 267318aa91d..1d89b7d4146 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1925,54 +1925,6 @@ Python environments, similar to @code{tox}. Unlike tox, Nox uses a standard
1925Python file for configuration.") 1925Python file for configuration.")
1926 (license license:asl2.0))) 1926 (license license:asl2.0)))
1927 1927
1928(define-public python-nptyping
1929 (package
1930 (name "python-nptyping")
1931 (version "2.5.0")
1932 (source (origin
1933 (method git-fetch) ;pypi only contains a binary wheel
1934 (uri (git-reference
1935 (url "https://github.com/ramonhagenaars/nptyping")
1936 (commit (string-append "v" version))))
1937 (file-name (git-file-name name version))
1938 (sha256
1939 (base32
1940 "0m6iq98qi9pl5hcc5k99bvy5w293vrlsdnimxl020i60rfnihgl7"))))
1941 (build-system pyproject-build-system)
1942 (arguments
1943 (list
1944 #:test-flags
1945 #~(list
1946 ;; This one started failing with the last update of Numpy.
1947 "--ignore=tests/test_beartype.py"
1948 ;; Multiple failures due to undefined names (typing package must be
1949 ;; too outdated, or perhaps they use a newer pandas).
1950 "--ignore=tests/test_mypy.py"
1951 "--ignore=tests/pandas_/test_mypy_dataframe.py"
1952 "--ignore=tests/pandas_/test_fork_sync.py" ;requires connectivity
1953 ;; This test requires 'python-pyright', not packaged.
1954 "--ignore=tests/test_pyright.py"
1955 ;; This one fails with "Unexpected argument of type <class 'tuple'>".
1956 "--ignore=tests/test_typeguard.py"
1957 ;; This one runs pip and fails.
1958 "--ignore=tests/test_wheel.py")))
1959 (native-inputs
1960 (list python-beartype
1961 python-feedparser
1962 python-pandas
1963 python-pytest
1964 python-setuptools
1965 python-typeguard))
1966 (propagated-inputs
1967 (list python-numpy-1
1968 python-typing-extensions
1969 python-pandas-stubs))
1970 (home-page "https://github.com/ramonhagenaars/nptyping")
1971 (synopsis "Type hints for Numpy")
1972 (description "This package provides extensive dynamic type checks for
1973dtypes and shapes of arrays for NumPy, extending @code{numpy.typing}.")
1974 (license license:expat)))
1975
1976(define-public python-pandas-vet 1928(define-public python-pandas-vet
1977 (package 1929 (package
1978 (name "python-pandas-vet") 1930 (name "python-pandas-vet")