mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 13:17:10 -05:00
gnu: python2-backports-csv: Remove sanity-check phase.
* gnu/packages/python-xyz.scm (python2-backports-csv)[arguments]: Remove 'sanity-check phase.
This commit is contained in:
parent
239c90f4bf
commit
ff8afea9f7
1 changed files with 8 additions and 1 deletions
|
@ -9612,7 +9612,14 @@ (define-public python-backports-csv
|
||||||
(license license:psfl)))
|
(license license:psfl)))
|
||||||
|
|
||||||
(define-public python2-backports-csv
|
(define-public python2-backports-csv
|
||||||
(package-with-python2 python-backports-csv))
|
(package
|
||||||
|
(inherit (package-with-python2 python-backports-csv))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; The sanity-check attempts attempts to import the non-existent
|
||||||
|
;; module "backports".
|
||||||
|
(delete 'sanity-check))))))
|
||||||
|
|
||||||
(define-public python2-backports-shutil-get-terminal-size
|
(define-public python2-backports-shutil-get-terminal-size
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue