2016-02-19 12:12:11 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonApplication, pythonPackages, picocom
|
2015-02-01 21:50:34 +00:00
|
|
|
, avrdude, arduino-core, avrgcclibc }:
|
2012-11-28 01:55:24 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
buildPythonApplication rec {
|
2013-11-26 22:55:31 +00:00
|
|
|
name = "ino-0.3.6";
|
2012-11-28 01:55:24 +00:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 12:38:03 +00:00
|
|
|
url = "mirror://pypi/i/ino/${name}.tar.gz";
|
2013-11-26 22:55:31 +00:00
|
|
|
sha256 = "0k6lzfcn55favbj0w4afrvnmwyskf7bgzg9javv2ycvskp35srwv";
|
2012-11-28 01:55:24 +00:00
|
|
|
};
|
|
|
|
|
2012-12-01 02:00:45 +00:00
|
|
|
# TODO: add avrgcclibc, it must be rebuild with C++ support
|
2013-03-25 14:28:09 +00:00
|
|
|
propagatedBuildInputs =
|
2015-02-01 21:50:34 +00:00
|
|
|
[ arduino-core avrdude picocom pythonPackages.configobj
|
2014-08-27 17:02:05 +00:00
|
|
|
pythonPackages.jinja2 pythonPackages.pyserial pythonPackages.six ];
|
2012-11-28 01:55:24 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
echo "Patching Arduino distribution path"
|
2015-02-01 21:50:34 +00:00
|
|
|
sed -i 's@/usr/local/share/arduino@${arduino-core}/share/arduino@g' \
|
2013-03-25 14:28:09 +00:00
|
|
|
ino/environment.py
|
|
|
|
sed -i -e 's@argparse@@' -e 's@ordereddict@@' \
|
|
|
|
requirements.txt
|
|
|
|
sed -i -e 's@from ordereddict@from collections@' \
|
|
|
|
ino/environment.py ino/utils.py
|
2013-08-15 21:14:36 +00:00
|
|
|
|
|
|
|
# Patch the upload command so it uses the correct avrdude
|
|
|
|
substituteInPlace ino/commands/upload.py \
|
|
|
|
--replace "self.e['avrdude']" "'${avrdude}/bin/avrdude'" \
|
|
|
|
--replace "'-C', self.e['avrdude.conf']," ""
|
2012-11-28 01:55:24 +00:00
|
|
|
'';
|
2013-10-08 09:05:19 +00:00
|
|
|
|
2012-11-28 01:55:24 +00:00
|
|
|
meta = {
|
|
|
|
description = "Command line toolkit for working with Arduino hardware";
|
|
|
|
homepage = http://inotool.org/;
|
2013-08-15 21:14:36 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono the-kenny ];
|
2013-10-08 09:05:19 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-11-28 01:55:24 +00:00
|
|
|
};
|
|
|
|
}
|