2018-07-20 08:30:11 +01:00
|
|
|
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "rshell";
|
2019-05-24 09:15:34 +01:00
|
|
|
version = "0.0.25";
|
2018-07-20 08:30:11 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-24 09:15:34 +01:00
|
|
|
sha256 = "f6857cdc3c53c8ce9ba7a560c2759c10b988f3d9fafde912d3fa4deecb4d4664";
|
2018-07-20 08:30:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyserial pyudev ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/dhylands/rshell;
|
|
|
|
description = "Remote Shell for MicroPython";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ c0deaddict ];
|
|
|
|
};
|
|
|
|
}
|