about summary refs log tree commit diff
path: root/pkgs/development/arduino/platformio/core.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/arduino/platformio/core.nix')
-rw-r--r--pkgs/development/arduino/platformio/core.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/arduino/platformio/core.nix b/pkgs/development/arduino/platformio/core.nix
new file mode 100644
index 000000000000..9d30c2268554
--- /dev/null
+++ b/pkgs/development/arduino/platformio/core.nix
@@ -0,0 +1,30 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, bottle, click, colorama
+, lockfile, pyserial, requests
+, semantic-version
+, git
+}:
+
+buildPythonPackage rec {
+  pname = "platformio";
+  version = "3.5.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "bb311ce5b8f12c95bc45c2071626a4887a3632fb2472b4d69a873b2acfc2e4ec";
+  };
+
+  propagatedBuildInputs =  [
+    bottle click colorama git lockfile
+    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;
+  };
+}