summary refs log tree commit diff
path: root/nix/python-flipdots.nix
blob: 6ba0ba31a6f05f70391622f957d9b52c375c6362 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildPythonPackage, pillow, numpy, flask
, getSrc
}:

buildPythonPackage {
  name = "flipdots";
  version = "unstable";

  src = getSrc "third_party/flipdots";

  propagatedBuildInputs = [ flask pillow numpy ];

  doCheck = false;

  pythonImportsCheck = [ "flipdots.scripts" ];

  meta = {
    description = "Scripts and python library to interact with the flipdots";
  };
}