Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 20 lines 514 B view raw
1{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }: 2 3buildPythonApplication rec { 4 pname = "rshell"; 5 version = "0.0.14"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "12gh9l13lwnlp330jl3afy3wgfkpjvdxr43flrg9k9kyyhbr191g"; 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}