159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
15 lines
187 B
Nix
15 lines
187 B
Nix
{
|
|
runCommand,
|
|
python,
|
|
plotly,
|
|
pandas,
|
|
kaleido,
|
|
}:
|
|
|
|
runCommand "${kaleido.pname}-tests" {
|
|
nativeBuildInputs = [
|
|
python
|
|
plotly
|
|
pandas
|
|
];
|
|
} "python3 ${./tests.py}"
|