gnu: python-biom-format: Fix build.

* gnu/packages/bioinformatics.scm (python-biom-format)[source]: Remove
generated C files.
[arguments]: Disable second broken test.
This commit is contained in:
Ricardo Wurmus 2019-03-18 23:45:15 +01:00
parent 0fa926c2e5
commit 9e1d9a0a46
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -896,20 +896,30 @@ (define-public python-biom-format
(file-name (git-file-name name version))
(sha256
(base32
"1rna16lyk5aqhnv0dp77wwaplias93f1vw28ad3jmyw6hwkai05v"))))
"1rna16lyk5aqhnv0dp77wwaplias93f1vw28ad3jmyw6hwkai05v"))
(modules '((guix build utils)))
(snippet '(begin
;; Delete generated C files.
(for-each delete-file (find-files "." "\\.c"))
#t))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'use-cython
(lambda _ (setenv "USE_CYTHON" "1") #t))
(add-after 'unpack 'disable-broken-test
(add-after 'unpack 'disable-broken-tests
(lambda _
(substitute* "biom/tests/test_cli/test_validate_table.py"
(("^(.+)def test_invalid_hdf5" m indent)
(string-append indent
"@npt.dec.skipif(True, msg='Guix')\n"
m)))
(substitute* "biom/tests/test_table.py"
(("^(.+)def test_from_hdf5_issue_731" m indent)
(string-append indent
"@npt.dec.skipif(True, msg='Guix')\n"
m)))
#t))
(add-before 'reset-gzip-timestamps 'make-files-writable
(lambda* (#:key outputs #:allow-other-keys)