platformio: 3.5.0 -> 3.5.1

This commit is contained in:
Matthew O'Gorman 2018-01-18 10:02:44 -05:00
parent ad0e0f27e3
commit 12b7def4a8

View file

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, arrow, bottle, click_5, colorama
, bottle, click_5, colorama
, lockfile, pyserial, requests
, semantic-version
, isPy3k, isPyPy
@ -8,17 +8,17 @@ buildPythonPackage rec {
disabled = isPy3k || isPyPy;
pname = "platformio";
version="3.5.0";
version="3.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0gy13cwp0i97lgjd8hh8kh9cswxh53x4cx2sq5b7d7vv8kd7bh6c";
sha256 = "0cc15mzh7p1iykip0jpxldz81yz946vrgvhwmfl8w3z5kgjjgx3n";
};
propagatedBuildInputs = [
arrow bottle click_5 colorama
lockfile pyserial requests semantic-version
bottle click_5 colorama lockfile
pyserial requests semantic-version
];
patches = [ ./fix-searchpath.patch ];