Merge pull request #34011 from mogorman/platformio

platformio: 3.5.0 -> 3.5.1
This commit is contained in:
Jörg Thalheim 2018-01-18 15:40:10 +00:00 committed by GitHub
commit 7ac14f0b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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