Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
559 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonApplication,
fetchPypi,
pyserial,
pyudev,
}:
buildPythonApplication rec {
pname = "rshell";
version = "0.0.36";
format = "setuptools";
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 ];
};
}