fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
529 B
Nix
28 lines
529 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
, pyserial
|
|
, pyudev
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "rshell";
|
|
version = "0.0.32";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-frIwZ21JzVgxRS+KouBjDShHCP1lCoUwwySy2oFGcJ8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyserial
|
|
pyudev
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dhylands/rshell";
|
|
description = "Remote Shell for MicroPython";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ c0deaddict ];
|
|
};
|
|
}
|