pypy3Packages.tkinter: enable and make no-op (#379087)
[NixPkgs.git] / pkgs / by-name / ad / adafruit-ampy / package.nix
blob0cf5ba087a4949e3dc506bd2438eb8b24e3d05ff
2   lib,
3   python3,
4   fetchPypi,
5 }:
7 with python3.pkgs;
9 buildPythonApplication rec {
10   pname = "adafruit-ampy";
11   version = "1.1.0";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "f4cba36f564096f2aafd173f7fbabb845365cc3bb3f41c37541edf98b58d3976";
16   };
18   nativeBuildInputs = [ setuptools-scm ];
19   propagatedBuildInputs = [
20     click
21     python-dotenv
22     pyserial
23   ];
25   # No tests
26   doCheck = false;
28   meta = with lib; {
29     homepage = "https://github.com/pycampers/ampy";
30     license = licenses.mit;
31     description = "Utility to interact with a MicroPython board over a serial connection";
32     maintainers = [ ];
33     mainProgram = "ampy";
34   };