Merge pull request #61495 from etu/init-ampy
adafruit-ampy: init at 1.0.7
This commit is contained in:
commit
ac3b216a8b
26
pkgs/tools/misc/adafruit-ampy/default.nix
Normal file
26
pkgs/tools/misc/adafruit-ampy/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -447,6 +447,8 @@ in
|
|||||||
|
|
||||||
actkbd = callPackage ../tools/system/actkbd { };
|
actkbd = callPackage ../tools/system/actkbd { };
|
||||||
|
|
||||||
|
adafruit-ampy = callPackage ../tools/misc/adafruit-ampy { };
|
||||||
|
|
||||||
adlplug = callPackage ../applications/audio/adlplug { };
|
adlplug = callPackage ../applications/audio/adlplug { };
|
||||||
|
|
||||||
opnplug = callPackage ../applications/audio/adlplug {
|
opnplug = callPackage ../applications/audio/adlplug {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user