34 lines
776 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2018-01-18 10:02:44 -05:00
, bottle, click_5, colorama
, lockfile, pyserial, requests
, semantic-version
, isPy3k, isPyPy
2018-01-09 17:27:40 -06:00
, git
}:
buildPythonPackage rec {
disabled = isPy3k || isPyPy;
pname = "platformio";
2018-01-18 10:02:44 -05:00
version="3.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-01-18 10:02:44 -05:00
sha256 = "0cc15mzh7p1iykip0jpxldz81yz946vrgvhwmfl8w3z5kgjjgx3n";
};
propagatedBuildInputs = [
2018-01-09 17:27:40 -06:00
bottle click_5 colorama git lockfile
2018-01-18 10:02:44 -05:00
pyserial requests semantic-version
];
patches = [ ./fix-searchpath.patch ];
meta = with stdenv.lib; {
description = "An open source ecosystem for IoT development";
homepage = http://platformio.org;
maintainers = with maintainers; [ mog makefu ];
license = licenses.asl20;
};
}