mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: python-pybtex: Fix test failure.
* gnu/packages/python-xyz.scm (python-pybtex)[arguments]: Run nosetests directly instead of via setup.py.
This commit is contained in:
parent
f0e638a576
commit
2d5c270ec4
1 changed files with 6 additions and 1 deletions
|
@ -21816,7 +21816,12 @@ (define-public python-pybtex
|
|||
(inputs
|
||||
(list python-latexcodec python-pyyaml python-six))
|
||||
(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/")
|
||||
(synopsis "BibTeX-compatible bibliography processor")
|
||||
(description "Pybtex is a BibTeX-compatible bibliography processor written
|
||||
|
|
Loading…
Reference in a new issue