Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.11 20 lines 528 B view raw
1{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }: 2 3buildPythonApplication rec { 4 pname = "rshell"; 5 version = "0.0.30"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d2002d40d735204037d6142a6c2d51beecc763c124faaf759cabf7acd945be95"; 10 }; 11 12 propagatedBuildInputs = [ pyserial pyudev ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/dhylands/rshell"; 16 description = "Remote Shell for MicroPython"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ c0deaddict ]; 19 }; 20}