2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3 }:
|
2019-05-14 15:16:38 +01:00
|
|
|
|
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "adafruit-ampy";
|
2021-08-27 19:18:51 +01:00
|
|
|
version = "1.1.0";
|
2019-05-14 15:16:38 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-27 19:18:51 +01:00
|
|
|
sha256 = "f4cba36f564096f2aafd173f7fbabb845365cc3bb3f41c37541edf98b58d3976";
|
2019-05-14 15:16:38 +01:00
|
|
|
};
|
|
|
|
|
2021-06-03 11:09:11 +01:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2019-05-14 15:16:38 +01:00
|
|
|
propagatedBuildInputs = [ click python-dotenv pyserial ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-14 15:16:38 +01:00
|
|
|
homepage = "https://github.com/pycampers/ampy";
|
|
|
|
license = licenses.mit;
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Utility to interact with a MicroPython board over a serial connection";
|
2019-05-14 15:16:38 +01:00
|
|
|
maintainers = with maintainers; [ etu ];
|
|
|
|
};
|
|
|
|
}
|