My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyfantom/default.nix

24 lines
481 B

{ 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;
};
}