nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 20 lines 514 B view raw
1{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }: 2 3buildPythonApplication rec { 4 pname = "rshell"; 5 version = "0.0.26"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "05nvfaykzwj1y86fcckrnvmrva7849lkbmpxsy2hb9akk0y7li6c"; 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}