2023-05-24 13:37:59 +00:00
|
|
|
import ../make-test-python.nix ({ ... }:
|
2022-06-16 17:23:12 +00:00
|
|
|
{
|
|
|
|
name = "extra-python-packages";
|
|
|
|
|
|
|
|
extraPythonPackages = p: [ p.numpy ];
|
|
|
|
|
|
|
|
nodes = { };
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
import numpy as np
|
|
|
|
assert str(np.zeros(4) == "array([0., 0., 0., 0.])")
|
|
|
|
'';
|
|
|
|
})
|