diff options
| author | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-28 12:37:42 +0200 |
|---|---|---|
| committer | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-29 10:17:48 +0200 |
| commit | 97c82f3cca2392261fa03d1b6fac05f3791c3853 (patch) | |
| tree | a66113b8b6670b32a4ac8f67bcfe5b14f28d472d | |
| parent | 52e674a1bae11f7377fb03cedcf242d041637dc8 (diff) | |
nlp: python-quicksectx: Fix build.
* guix-science/packages/nlp.scm (python-quicksectx)
[arguments]<#:phases>: Remove versioned requirement for Cython.
| -rw-r--r-- | guix-science/packages/nlp.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/guix-science/packages/nlp.scm b/guix-science/packages/nlp.scm index 75dacd5..910a993 100644 --- a/guix-science/packages/nlp.scm +++ b/guix-science/packages/nlp.scm | |||
| @@ -469,6 +469,15 @@ It can also (re)synthesize speech using these features.") | |||
| 469 | (sha256 | 469 | (sha256 |
| 470 | (base32 "0v3ggw4kb4ydphwp78158f29j8spk9wg1h6ly2i78m8p9xaks37w")))) | 470 | (base32 "0v3ggw4kb4ydphwp78158f29j8spk9wg1h6ly2i78m8p9xaks37w")))) |
| 471 | (build-system pyproject-build-system) | 471 | (build-system pyproject-build-system) |
| 472 | (arguments | ||
| 473 | (list | ||
| 474 | #:phases | ||
| 475 | #~(modify-phases %standard-phases | ||
| 476 | (add-after 'unpack 'fix-requirements | ||
| 477 | (lambda _ | ||
| 478 | (substitute* "requirements.txt" | ||
| 479 | (("Cython.*") | ||
| 480 | "Cython"))))))) | ||
| 472 | (native-inputs (list python-cython python-pytest python-setuptools)) | 481 | (native-inputs (list python-cython python-pytest python-setuptools)) |
| 473 | (home-page "https://github.com/jianlins/quicksectx") | 482 | (home-page "https://github.com/jianlins/quicksectx") |
| 474 | (synopsis "Simple and fast interval search in Python") | 483 | (synopsis "Simple and fast interval search in Python") |
