mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-scikit-rebate: Switch to pyproject.
* gnu/packages/machine-learning.scm (python-scikit-rebate)[build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools-next. Change-Id: I9b4767dd3593aadb43195ac6589db4ad3c7e6a30 Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
e28bf7c6f6
commit
b019668f1f
1 changed files with 14 additions and 8 deletions
|
@ -2452,18 +2452,24 @@ Neighbor Embedding (t-SNE), a popular dimensionality-reduction algorithm for
|
||||||
visualizing high-dimensional data sets.")
|
visualizing high-dimensional data sets.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
;; XXX: Potentially it is an abandonware, no releases or any updates since
|
||||||
|
;; 2021, consider to remove when become incompatible with propagated inputs.
|
||||||
(define-public python-scikit-rebate
|
(define-public python-scikit-rebate
|
||||||
(package
|
(package
|
||||||
(name "python-scikit-rebate")
|
(name "python-scikit-rebate")
|
||||||
(version "0.62")
|
(version "0.62")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "skrebate" version))
|
(uri (pypi-uri "skrebate" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0n55ghvnv7rxqa5agq6a4892ad0ghha165b0g4ghwr9gqm6ss3dj"))))
|
||||||
"0n55ghvnv7rxqa5agq6a4892ad0ghha165b0g4ghwr9gqm6ss3dj"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
;; There are no tests on PyPI, tests in git repo require an old release of
|
||||||
(arguments '(#:tests? #f)) ;no tests on PyPI and no tags in repo
|
;; python-scikit-learn
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools-next))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-numpy python-scipy python-scikit-learn python-joblib))
|
(list python-numpy python-scipy python-scikit-learn python-joblib))
|
||||||
(home-page "https://epistasislab.github.io/scikit-rebate/")
|
(home-page "https://epistasislab.github.io/scikit-rebate/")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue