nixpkgs/pkgs/tools/misc/adafruit-ampy/default.nix

27 lines
619 B
Nix
Raw Normal View History

{ lib, python3 }:
2019-05-14 14:16:38 +00:00
with python3.pkgs;
buildPythonApplication rec {
pname = "adafruit-ampy";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "1dz5sksalccv4c3bzk3c1jxpg3s28lwlw8hfwc9dfxhw3a1np3fd";
};
nativeBuildInputs = [ setuptools-scm ];
2019-05-14 14:16:38 +00:00
propagatedBuildInputs = [ click python-dotenv pyserial ];
# No tests
doCheck = false;
meta = with lib; {
2019-05-14 14:16:38 +00:00
homepage = "https://github.com/pycampers/ampy";
license = licenses.mit;
description = "Utility to interact with a MicroPython board over a serial connection";
2019-05-14 14:16:38 +00:00
maintainers = with maintainers; [ etu ];
};
}