depot/third_party/nixpkgs/pkgs/development/python-modules/kaleido/tests.nix

16 lines
187 B
Nix
Raw Normal View History

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