Files
nixpkgs/pkgs/development/python-modules/kaleido/tests.nix

17 lines
199 B
Nix

{
runCommand,
python,
plotly,
pandas,
kaleido,
}:
runCommand "${kaleido.pname}-tests" {
nativeBuildInputs = [
python
plotly
pandas
kaleido
];
} "python3 ${./tests.py}"