summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/misc/adafruit-ampy
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-05-14 16:16:38 +0200
committerElis Hirwing <elis@hirwing.se>2019-05-15 08:29:43 +0200
commite5b4f6f4ed46fc1b6189f1375326db1b9db72436 (patch)
tree4aeea382846054bcfbc5b5ecd4f5a247017714ec /pkgs/tools/misc/adafruit-ampy
parentfaf5e8ad8cf2a4b4a09f86b1a6474f1c32479af9 (diff)
adafruit-ampy: init at 1.0.7
Diffstat (limited to 'pkgs/tools/misc/adafruit-ampy')
-rw-r--r--pkgs/tools/misc/adafruit-ampy/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/adafruit-ampy/default.nix b/pkgs/tools/misc/adafruit-ampy/default.nix
new file mode 100644
index 000000000000..be47d42dc89f
--- /dev/null
+++ b/pkgs/tools/misc/adafruit-ampy/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, python3 }:
+
+with python3.pkgs;
+
+buildPythonApplication rec {
+ pname = "adafruit-ampy";
+ version = "1.0.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1dz5sksalccv4c3bzk3c1jxpg3s28lwlw8hfwc9dfxhw3a1np3fd";
+ };
+
+ nativeBuildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ click python-dotenv pyserial ];
+
+ # No tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/pycampers/ampy";
+ license = licenses.mit;
+ description = "Utility to interact with a MicroPython board over a serial connection.";
+ maintainers = with maintainers; [ etu ];
+ };
+}