summary refs log tree commit diff
path: root/nix/python-flipdots.nix
blob: 88d13243d4cdea08baebe0964543399ddfd36c65 (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
, rootSrc
}:

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

  src = rootSrc + "/third_party/flipdots";

  propagatedBuildInputs = [ flask pillow numpy ];

  doCheck = false;

  pythonImportsCheck = [ "flipdots.scripts" ];

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