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