depot/third_party/nixpkgs/nixos/tests/nixos-test-driver/extra-python-packages.nix

15 lines
264 B
Nix

import ../make-test-python.nix (
{ ... }:
{
name = "extra-python-packages";
extraPythonPackages = p: [ p.numpy ];
nodes = { };
testScript = ''
import numpy as np
assert str(np.zeros(4) == "array([0., 0., 0., 0.])")
'';
}
)