gnu: python-pybtex: Fix test failure.
* gnu/packages/python-xyz.scm (python-pybtex)[arguments]: Run nosetests directly instead of via setup.py.master
parent
f0e638a576
commit
2d5c270ec4
|
@ -21816,7 +21816,12 @@ working with iterables.")
|
||||||
(inputs
|
(inputs
|
||||||
(list python-latexcodec python-pyyaml python-six))
|
(list python-latexcodec python-pyyaml python-six))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "nosetests"))
|
(list
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "nosetests")))))))
|
||||||
(home-page "https://pybtex.org/")
|
(home-page "https://pybtex.org/")
|
||||||
(synopsis "BibTeX-compatible bibliography processor")
|
(synopsis "BibTeX-compatible bibliography processor")
|
||||||
(description "Pybtex is a BibTeX-compatible bibliography processor written
|
(description "Pybtex is a BibTeX-compatible bibliography processor written
|
||||||
|
|
Reference in New Issue