From 6dacd15381f5cb42653c207715b8d5c133f93129 Mon Sep 17 00:00:00 2001 From: Wiktor Zelazny Date: Wed, 18 May 2022 16:20:23 +0000 Subject: gnu: Add python-climin. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-science.scm (python-climin): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-science.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 6bc726fc83..1e0910b46f 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2022 Malte Frank Gerdes ;;; Copyright © 2022 Guillaume Le Vaillant ;;; Copyright © 2022 Paul A. Patience +;;; Copyright © 2022 Wiktor Żelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -1291,3 +1292,24 @@ build applications with traitlets in combination with the scipy stack.") (description "This package is an implementation of the Promises/A+ specification and test suite in Python.") (license license:expat))) + +(define-public python-climin + (package + (name "python-climin") + (version "0.1a1") + (source (origin + (method url-fetch) + (uri (pypi-uri "climin" version)) + (sha256 + (base32 + "1wpjisd5zzi5yvjff02hnxn84822k8sdxvvd33lil2x79wdb36rv")))) + (build-system python-build-system) + (native-inputs (list python-nose)) + (propagated-inputs (list python-numpydoc python-numpy python-scipy)) + (home-page "https://github.com/BRML/climin") + (synopsis "Optimization for machine learning") + (description + "@command{climin} is a Python package for optimization, +heavily biased to machine learning scenarios. It works on top of +@command{numpy} and (partially) @command{gnumpy}.") + (license license:bsd-3))) -- cgit v1.2.3