gnu: python-pytest: Build with 'bash' instead of 'bash-final'.
Addresses FTBFS after 704243e0c6
.
* gnu/packages/python.scm (python-pytest)[native-inputs]: Add BASH.
(python-pytest-3.0)[native-inputs]: Inherit.
This commit is contained in:
parent
ed068b960e
commit
60724d6975
|
@ -1877,7 +1877,9 @@ code introspection, and logging.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-py" ,python-py)))
|
`(("python-py" ,python-py)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python-nose)
|
`(;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
|
||||||
|
("bash" ,bash)
|
||||||
|
("python-nose" ,python-nose)
|
||||||
("python-mock" ,python-mock)))
|
("python-mock" ,python-mock)))
|
||||||
(home-page "http://pytest.org")
|
(home-page "http://pytest.org")
|
||||||
(synopsis "Python testing library")
|
(synopsis "Python testing library")
|
||||||
|
@ -1914,9 +1916,8 @@ and many external plugins.")
|
||||||
line)))
|
line)))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python-nose)
|
`(("python-hypothesis" ,python-hypothesis)
|
||||||
("python-mock" ,python-mock)
|
,@(package-native-inputs python-pytest)))
|
||||||
("python-hypothesis" ,python-hypothesis)))
|
|
||||||
(properties `((python2-variant . ,(delay python2-pytest-3.0))))))
|
(properties `((python2-variant . ,(delay python2-pytest-3.0))))))
|
||||||
|
|
||||||
(define-public python2-pytest-3.0
|
(define-public python2-pytest-3.0
|
||||||
|
|
Loading…
Reference in New Issue