about summary refs log tree commit diff
path: root/pkgs/development/python-modules/kaleido/tests.nix
blob: e09f4947a563e5d0953c933238fb9c9197f20585 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  runCommand,
  python,
  plotly,
  pandas,
  kaleido,
}:

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