mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: python-termstyle: Fix tests.
* gnu/packages/python.scm (python-termstyle)[arguments]: Replace 'check' phase with custom command.
This commit is contained in:
parent
a960e73fad
commit
7917a13554
1 changed files with 6 additions and 0 deletions
|
@ -11940,6 +11940,12 @@ (define-public python-termstyle
|
||||||
(base32
|
(base32
|
||||||
"17wzkkcqy5zc0g68xlad3kcv66iw14d2pwqc0h9420gak0vbhx7g"))))
|
"17wzkkcqy5zc0g68xlad3kcv66iw14d2pwqc0h9420gak0vbhx7g"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "python" "test3.py")))))))
|
||||||
(home-page "http://github.com/gfxmonk/termstyle")
|
(home-page "http://github.com/gfxmonk/termstyle")
|
||||||
(synopsis "Console text coloring for Python")
|
(synopsis "Console text coloring for Python")
|
||||||
(description "This package provides console text coloring for Python.")
|
(description "This package provides console text coloring for Python.")
|
||||||
|
|
Loading…
Reference in a new issue