mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:26:21 +01:00
gnu: python-pytest-flakefinder: Fix build.
* gnu/packages/python-check.scm (python-pytest-flakefinder)[native-inputs]: Add python-wheel, python-setuptools. Change-Id: Ic43963f7877901923f266cc89d07380bb0f66bfd
This commit is contained in:
parent
187a223dcb
commit
ca305f0716
1 changed files with 5 additions and 3 deletions
|
@ -51,6 +51,7 @@ (define-module (gnu packages python-check)
|
|||
#:use-module (gnu packages openstack)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-science)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages qt)
|
||||
|
@ -247,6 +248,7 @@ (define-public python-pytest-flakefinder
|
|||
(sha256
|
||||
(base32 "03iy80xlkpgzjs2kxa9rrj8dbnp9awyhpcl3hy8fgf5x40cjlhg2"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs (list python-wheel python-setuptools))
|
||||
(propagated-inputs (list python-pytest))
|
||||
(home-page "https://github.com/dropbox/pytest-flakefinder")
|
||||
(synopsis "Pytest plugin for finding flaky tests")
|
||||
|
@ -2299,7 +2301,7 @@ (define-public python-mypy-minimal
|
|||
(define-public python-nptyping
|
||||
(package
|
||||
(name "python-nptyping")
|
||||
(version "2.0.0")
|
||||
(version "2.5.0")
|
||||
(source (origin
|
||||
(method git-fetch) ;pypi only contains a binary wheel
|
||||
(uri (git-reference
|
||||
|
@ -2308,7 +2310,7 @@ (define-public python-nptyping
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0839mcrv5jljq9k9124ssnl1hc1inbxwlwjk72imabsbqssjy9rb"))))
|
||||
"0m6iq98qi9pl5hcc5k99bvy5w293vrlsdnimxl020i60rfnihgl7"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -2324,7 +2326,7 @@ (define-public python-nptyping
|
|||
python-setuptools
|
||||
python-typeguard
|
||||
python-wheel))
|
||||
(propagated-inputs (list python-numpy python-typing-extensions))
|
||||
(propagated-inputs (list python-numpy python-typing-extensions python-pandas-stubs))
|
||||
(home-page "https://github.com/ramonhagenaars/nptyping")
|
||||
(synopsis "Type hints for Numpy")
|
||||
(description "This package provides extensive dynamic type checks for
|
||||
|
|
Loading…
Reference in a new issue