mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: Add python-qdldl.
* gnu/packages/python-science.scm (python-qdldl): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net> Change-Id: I523ecb2292c9b514b548e2130d0d43bb77317b00
This commit is contained in:
parent
d470a9aa54
commit
d051ef0913
1 changed files with 20 additions and 0 deletions
|
@ -50,6 +50,7 @@ (define-module (gnu packages python-science)
|
|||
#:use-module (gnu packages build-tools)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages chemistry)
|
||||
#:use-module (gnu packages cmake)
|
||||
#:use-module (gnu packages cpp)
|
||||
#:use-module (gnu packages crates-io)
|
||||
#:use-module (gnu packages crypto)
|
||||
|
@ -88,6 +89,25 @@ (define-module (gnu packages python-science)
|
|||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system pyproject))
|
||||
|
||||
(define-public python-qdldl
|
||||
(package
|
||||
(name "python-qdldl")
|
||||
(version "0.1.7.post2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "qdldl" version))
|
||||
(sha256
|
||||
(base32 "1lspam0k8gnw1yglqxvdv350fq00nkgdfmkizmx7bk0hxjjkj5ab"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs (list cmake-minimal pybind11))
|
||||
(propagated-inputs (list python-numpy python-scipy))
|
||||
(home-page "https://github.com/oxfordcontrol/qdldl-python/")
|
||||
(synopsis "QDLDL LDL factorization routine")
|
||||
(description "This package provides a Python interface to the QDLDL LDL
|
||||
factorization routine for quasi-definite linear system.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-scipy
|
||||
(package
|
||||
(name "python-scipy")
|
||||
|
|
Loading…
Reference in a new issue