summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyfantom/default.nix
blob: d27cccfbd8c001cb3e18cb8d510cbd291bbbbefe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchgit
}:

buildPythonPackage {
  pname = "pyfantom";
  version = "unstable-2013-12-18";

  src = fetchgit {
    url = "http://git.ni.fr.eu.org/pyfantom.git";
    sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
  };

  # No tests included
  doCheck = false;

  meta = with lib; {
    homepage = "https://pyfantom.ni.fr.eu.org/";
    description = "Wrapper for the LEGO Mindstorms Fantom Driver";
    license = licenses.gpl2;
  };

}