1{ lib
2, buildPythonPackage
3, fetchgit
4}:
5
6buildPythonPackage {
7 pname = "pyfantom";
8 version = "unstable-2013-12-18";
9
10 src = fetchgit {
11 url = "http://git.ni.fr.eu.org/pyfantom.git";
12 sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
13 };
14
15 # No tests included
16 doCheck = false;
17
18 meta = with lib; {
19 homepage = "https://pyfantom.ni.fr.eu.org/";
20 description = "Wrapper for the LEGO Mindstorms Fantom Driver";
21 license = licenses.gpl2;
22 };
23
24}