{ lib
, buildPythonApplication
, fetchPypi
, pyserial
, pyudev
}:
buildPythonApplication rec {
pname = "rshell";
version = "0.0.36";
src = fetchPypi {
inherit pname version;
hash = "sha256-SmbYNSB0eVUOWdDdPoMAPQTE7KeKTkklD4h+0t1LC/U=";
};
propagatedBuildInputs = [
pyserial
pyudev
];
meta = with lib; {
homepage = "https://github.com/dhylands/rshell";
description = "Remote Shell for MicroPython";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
}