diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 23:02:56 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 23:03:07 +0100 |
| commit | 185cb9ce5c298d77c0bb14cafbc59cac50b774d3 (patch) | |
| tree | f512ecc09f64d1ecf892633ba085b6867805a807 /gnu/packages/python-science.scm | |
| parent | 521e1bd140cbb5aed07548b3a32aa2fa12ba889e (diff) | |
gnu: python-fbpca: Switch to pyproject.
* gnu/packages/python-science.scm (python-fbpca):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, and python-setuptools.
Change-Id: Ib02a92066f6c06b1de73fb5e5c4888544db7b9f8
Diffstat (limited to 'gnu/packages/python-science.scm')
| -rw-r--r-- | gnu/packages/python-science.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 2065171b90..74742b73e9 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -4131,6 +4131,8 @@ changed, it made sense to abstract away the nuisance of having to re-learn them.") (license license:bsd-3))) +;; XXX: Not maintained since 2019. The project was archived by the owner on +;; Nov 2, 2020. It is now read-only. (define-public python-fbpca (package (name "python-fbpca") @@ -4141,7 +4143,10 @@ them.") (sha256 (base32 "1lbjqhqsdmqk86lb86q3ywf7561zmdny1dfvgwqkyrkr4ij7f1hm")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:test-flags #~(list "fbpca.py"))) + (native-inputs (list python-pytest python-setuptools)) (propagated-inputs (list python-numpy python-scipy)) (home-page "https://fbpca.readthedocs.io/") |
