1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

gnu: rust-ndarray-0.16: Don't skip the build.

* gnu/packages/crates-io.scm (rust-ndarray-0.16)[arguments]: Don't skip
the build.  Skip the tests.
[cargo-development-inputs]: Add rust-approx-0.5, rust-defmac-0.2,
rust-itertools-0.13, rust-quickcheck-1.

Change-Id: I0026c018fc5cbce33b1db8d54623ddcae1c62321
This commit is contained in:
Efraim Flashner 2025-01-21 08:43:46 +02:00
parent b12d44428b
commit 3809cc4c6f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -44428,7 +44428,7 @@ established.")
(base32 "0ha8sg5ad501pgkxw0wczh8myc2ma3gyxgcny4mq8rckrqnxfbl8"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
`(#:tests? #f ; use of undeclared crate or module `ndarray_gen`
#:cargo-inputs
(("rust-approx" ,rust-approx-0.5)
("rust-cblas-sys" ,rust-cblas-sys-0.1)
@ -44441,7 +44441,11 @@ established.")
("rust-portable-atomic-util" ,rust-portable-atomic-util-0.2)
("rust-rawpointer" ,rust-rawpointer-0.2)
("rust-rayon" ,rust-rayon-1)
("rust-serde" ,rust-serde-1))))
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-approx" ,rust-approx-0.5)
("rust-defmac" ,rust-defmac-0.2)
("rust-itertools" ,rust-itertools-0.13)
("rust-quickcheck" ,rust-quickcheck-1))))
(home-page "https://github.com/rust-ndarray/ndarray")
(synopsis "N-dimensional container for general elements and for numerics")
(description