at master 559 B view raw
1{ 2 lib, 3 buildPythonApplication, 4 fetchPypi, 5 pyserial, 6 pyudev, 7}: 8 9buildPythonApplication rec { 10 pname = "rshell"; 11 version = "0.0.36"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-SmbYNSB0eVUOWdDdPoMAPQTE7KeKTkklD4h+0t1LC/U="; 17 }; 18 19 propagatedBuildInputs = [ 20 pyserial 21 pyudev 22 ]; 23 24 meta = with lib; { 25 homepage = "https://github.com/dhylands/rshell"; 26 description = "Remote Shell for MicroPython"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ c0deaddict ]; 29 }; 30}