mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: python-colorlog: Use new style.
* gnu/packages/python-xyz.scm (python-colorlog): Use new style. Change-Id: Id31d34d9c09330f7a5aa723ca1a1352b6736d875
This commit is contained in:
parent
dd1b8840ac
commit
2d6a3799fc
1 changed files with 9 additions and 8 deletions
|
@ -99,7 +99,7 @@
|
||||||
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2021, 2023 jgart <jgart@dismail.de>
|
;;; Copyright © 2021, 2023-2024 jgart <jgart@dismail.de>
|
||||||
;;; Copyright © 2021 Danial Behzadi <dani.behzi@ubuntu.com>
|
;;; Copyright © 2021 Danial Behzadi <dani.behzi@ubuntu.com>
|
||||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
||||||
|
@ -2113,13 +2113,14 @@ (define-public python-colorlog
|
||||||
(base32 "1s7x0v872h8aks8xp01wmv6hzisxqjrh1svbbcycir0980h76krl"))))
|
(base32 "1s7x0v872h8aks8xp01wmv6hzisxqjrh1svbbcycir0980h76krl"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(replace 'check
|
#~(modify-phases %standard-phases
|
||||||
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
(replace 'check
|
||||||
(when tests?
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
||||||
(add-installed-pythonpath inputs outputs)
|
(when tests?
|
||||||
(invoke "python" "-m" "pytest")))))))
|
(add-installed-pythonpath inputs outputs)
|
||||||
|
(invoke "python" "-m" "pytest")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest))
|
||||||
(home-page "https://github.com/borntyping/python-colorlog")
|
(home-page "https://github.com/borntyping/python-colorlog")
|
||||||
|
|
Loading…
Reference in a new issue