ino: use python2
This commit is contained in:
parent
57e5b78a2a
commit
a75358c288
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, pythonPackages, picocom
|
{ stdenv, fetchurl, python2Packages, picocom
|
||||||
, avrdude, arduino-core, avrgcclibc }:
|
, avrdude, arduino-core, avrgcclibc }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "ino-0.3.6";
|
name = "ino-0.3.6";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
@ -11,9 +11,15 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# TODO: add avrgcclibc, it must be rebuild with C++ support
|
# TODO: add avrgcclibc, it must be rebuild with C++ support
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs = with python2Packages; [
|
||||||
[ arduino-core avrdude picocom pythonPackages.configobj
|
arduino-core
|
||||||
pythonPackages.jinja2 pythonPackages.pyserial pythonPackages.six ];
|
avrdude
|
||||||
|
picocom
|
||||||
|
configobj
|
||||||
|
jinja2
|
||||||
|
pyserial
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
echo "Patching Arduino distribution path"
|
echo "Patching Arduino distribution path"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user