mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-scikit-optimize: Improve package style.
* gnu/packages/python-science.scm (python-scikit-optimize): Improve package style. [description]: Fix fill-column indentation. Change-Id: I184dab626c269cb6a85f48810dc147d627e4dc6c
This commit is contained in:
parent
7556a29735
commit
3231ea50de
1 changed files with 18 additions and 15 deletions
|
@ -2923,16 +2923,20 @@ swarm algorithm.")
|
||||||
(package
|
(package
|
||||||
(name "python-scikit-optimize")
|
(name "python-scikit-optimize")
|
||||||
(version "0.10.2")
|
(version "0.10.2")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/holgern/scikit-optimize")
|
(url "https://github.com/holgern/scikit-optimize")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0pc6avzxz8l32km5jvv3maih0a5x2akxybvxl2hdg04qz2l0kz8b"))))
|
||||||
"0pc6avzxz8l32km5jvv3maih0a5x2akxybvxl2hdg04qz2l0kz8b"))))
|
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-joblib
|
(list python-joblib
|
||||||
python-matplotlib
|
python-matplotlib
|
||||||
|
@ -2940,14 +2944,13 @@ swarm algorithm.")
|
||||||
python-pyaml
|
python-pyaml
|
||||||
python-scikit-learn
|
python-scikit-learn
|
||||||
python-scipy))
|
python-scipy))
|
||||||
(native-inputs
|
|
||||||
(list python-pytest python-setuptools python-wheel))
|
|
||||||
(home-page "https://scikit-optimize.github.io/")
|
(home-page "https://scikit-optimize.github.io/")
|
||||||
(synopsis "Sequential model-based optimization toolbox")
|
(synopsis "Sequential model-based optimization toolbox")
|
||||||
(description "Scikit-Optimize, or @code{skopt}, is a simple and efficient
|
(description
|
||||||
library to minimize (very) expensive and noisy black-box functions. It
|
"Scikit-Optimize, or @code{skopt}, is a simple and efficient library to
|
||||||
implements several methods for sequential model-based optimization.
|
minimize (very) expensive and noisy black-box functions. It implements
|
||||||
@code{skopt} aims to be accessible and easy to use in many contexts.")
|
several methods for sequential model-based optimization. @code{skopt} aims to
|
||||||
|
be accessible and easy to use in many contexts.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-scikit-surprise
|
(define-public python-scikit-surprise
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue