[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add python-scikit-opt.
From: |
guix-commits |
Subject: |
01/08: gnu: Add python-scikit-opt. |
Date: |
Sat, 10 Feb 2024 17:21:53 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 9474e64b098d52159ccec62969e6dceb924d5d5d
Author: TimotheeMathieu <timothee.mathieu@inria.fr>
AuthorDate: Sat Jan 20 12:41:00 2024 +0100
gnu: Add python-scikit-opt.
* gnu/packages/python-science.scm (python-scikit-opt): New variable.
Change-Id: I47d6b35d9658a37a242b4db61d293fa7efd33802
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-science.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 2e0a17aac7..b6a116f16b 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -339,6 +339,27 @@ logic, also known as grey logic.")
"Scikit-image is a collection of algorithms for image processing.")
(license license:bsd-3)))
+(define-public python-scikit-opt
+ (package
+ (name "python-scikit-opt")
+ (version "0.6.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "scikit-opt" version))
+ (sha256
+ (base32 "0ycqizgsj7q57asc1bphzhf1fx9zqn0vx5rli7q541bas64hfqiy"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-numpy python-scipy))
+ (home-page "https://github.com/guofei9987/scikit-opt")
+ (synopsis "Swarm intelligence algorithms in Python")
+ (description
+ "Scikit-opt (or sko) is a Python module implementing @dfn{swarm
+intelligence} algorithms: genetic algorithm, particle swarm optimization,
+simulated annealing, ant colony algorithm, immune algorithm, artificial fish
+swarm algorithm.")
+ (license license:expat)))
+
(define-public python-scikit-optimize
(package
(name "python-scikit-optimize")
- branch master updated (b64862e5cb -> 9edbb2d7a4), guix-commits, 2024/02/10
- 06/08: vm: Add ‘cpu-count’ field to <virtual-machine>., guix-commits, 2024/02/10
- 05/08: vm: Export <virtual-machine> accessors., guix-commits, 2024/02/10
- 03/08: services: secret-service: Make the endpoint configurable., guix-commits, 2024/02/10
- 02/08: gnu: openmolar-1: Update to release 1.1.6-g81838c8 and partial runtime fix., guix-commits, 2024/02/10
- 04/08: vm: Add ‘date’ field to <virtual-machine>., guix-commits, 2024/02/10
- 07/08: marionette: Add #:peek? to ‘wait-for-tcp-port?’., guix-commits, 2024/02/10
- 08/08: services: Add ‘virtual-build-machine’ service., guix-commits, 2024/02/10
- 01/08: gnu: Add python-scikit-opt.,
guix-commits <=