mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: cutadapt: Regenerate Cython files.
* gnu/packages/bioinformatics.scm (cutadapt)[arguments]: Add phase 'always-cythonize.
This commit is contained in:
parent
3eeae68af1
commit
da526f33f2
1 changed files with 10 additions and 0 deletions
|
@ -2616,6 +2616,16 @@ (define-public cutadapt
|
|||
(base32
|
||||
"1vqmsfkm6llxzmsz9wcfcvzx9a9f8iabvwik2rbyn7nc4wm25z89"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'always-cythonize
|
||||
(lambda _
|
||||
(delete-file "src/cutadapt/_align.c")
|
||||
;; If PKG-INFO exists, setup.py decides not to run Cython.
|
||||
(substitute* "setup.py"
|
||||
(("os.path.exists\\('PKG-INFO'\\):")
|
||||
"os.path.exists('totally-does-not-exist'):")))))))
|
||||
(inputs
|
||||
`(("python-dnaio" ,python-dnaio)
|
||||
("python-xopen" ,python-xopen)))
|
||||
|
|
Loading…
Reference in a new issue