3
0
Fork 0
forked from mirrors/nixpkgs

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
, 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 ];