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:
Ricardo Wurmus 2021-11-24 14:19:45 +01:00
parent 239c90f4bf
commit ff8afea9f7
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9612,7 +9612,14 @@ (define-public python-backports-csv
(license license:psfl)))
(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
(package