gnu: python-bbknn: Fix sanity-check phase.

* gnu/packages/bioinformatics.scm (python-bbknn)[arguments]: Add phase
'do-not-fail-to-find-sklearn, which prevents the 'sanity-check phase from
failing.
This commit is contained in:
Ricardo Wurmus 2021-12-05 17:33:17 +01:00
parent b1bd997d50
commit 4202f4d58a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -12036,7 +12036,14 @@ (define-public python-bbknn
"1jbsh01f57zj4bhvjr3jh4532zznqd6nccmgrl3qi9gnhkf7c4y0"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; TODO: Enable after migration to scikit-learn.
`(#:tests? #f ; no tests are included
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'do-not-fail-to-find-sklearn
(lambda _
;; XXX: I have no idea why it cannot seem to find sklearn.
(substitute* "setup.py"
(("'sklearn'") "")))))))
(propagated-inputs
`(("python-annoy" ,python-annoy)
("python-cython" ,python-cython)