Files
nixpkgs/pkgs/development/python-modules/kaleido/tests.nix
T
2024-09-04 15:20:11 -07:00

16 lines
187 B
Nix

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