summary refs log tree commit diff
path: root/pkgs/tools/misc/adafruit-ampy/default.nix
blob: f5149737639317d9a296dc15d3231fd96fcca301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, 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 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 ];
  };
}