2018-10-16 07:21:31 -07:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchgit
|
|
|
|
, isPy3k
|
|
|
|
, pyusb
|
|
|
|
, pybluez
|
|
|
|
, pyfantom
|
|
|
|
, git
|
|
|
|
}:
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
buildPythonPackage {
|
2018-10-16 07:21:31 -07:00
|
|
|
version = "unstable-20160819";
|
|
|
|
pname = "nxt-python";
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchgit {
|
2019-04-22 01:14:28 -07:00
|
|
|
url = "https://github.com/Eelviny/nxt-python";
|
2018-10-16 07:21:31 -07:00
|
|
|
rev = "479e20b7491b28567035f4cee294c4a2af629297";
|
|
|
|
sha256 = "0mcsajhgm2wy4iy2lhmyi3xibgmbixbchanzmlhsxk6qyjccn9r9";
|
|
|
|
branchName= "pyusb";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyusb pybluez pyfantom git ];
|
|
|
|
|
|
|
|
# Tests fail on Mac dependency
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python driver/interface for Lego Mindstorms NXT robot";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Eelviny/nxt-python";
|
2018-10-16 07:21:31 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|