mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: python-hmmlearn: Update to 0.2.7.
* gnu/packages/machine-learning.scm (python-hmmlearn): Update to 0.2.7. [source]<#:origin>: Remove deletion snippet for file removed upstream. [propagated-inputs]: Add pybind11. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ca428f944f
commit
bddb43b422
1 changed files with 7 additions and 7 deletions
|
@ -3224,18 +3224,14 @@ (define-public python-torchfile
|
||||||
(define-public python-hmmlearn
|
(define-public python-hmmlearn
|
||||||
(package
|
(package
|
||||||
(name "python-hmmlearn")
|
(name "python-hmmlearn")
|
||||||
(version "0.2.6")
|
(version "0.2.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "hmmlearn" version))
|
(uri (pypi-uri "hmmlearn" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1my0j3rzp17438idr32ssh0j969a98yjblx5igx5kgiiigr9qa1a"))
|
"1qgnf1kdxicygy8nvpv866iqvwq0rc6xkd3s6slmvxvsy8h2fjvb"))))
|
||||||
(snippet
|
|
||||||
#~(begin
|
|
||||||
(use-modules ((guix build utils)))
|
|
||||||
(delete-file "lib/hmmlearn/_hmmc.c")))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -3247,7 +3243,11 @@ (define-public python-hmmlearn
|
||||||
(with-directory-excursion (string-append (assoc-ref outputs "out") "/lib")
|
(with-directory-excursion (string-append (assoc-ref outputs "out") "/lib")
|
||||||
(invoke "python" "-m" "pytest"))))))))
|
(invoke "python" "-m" "pytest"))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-cython python-numpy python-scikit-learn python-scipy
|
(list pybind11
|
||||||
|
python-cython
|
||||||
|
python-numpy
|
||||||
|
python-scikit-learn
|
||||||
|
python-scipy
|
||||||
python-setuptools-scm))
|
python-setuptools-scm))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest))
|
||||||
|
|
Loading…
Reference in a new issue