nixpkgs/pkgs/development/tools/rshell/default.nix
2020-01-30 08:53:22 +00:00

21 lines
514 B
Nix

{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
buildPythonApplication rec {
pname = "rshell";
version = "0.0.26";
src = fetchPypi {
inherit pname version;
sha256 = "05nvfaykzwj1y86fcckrnvmrva7849lkbmpxsy2hb9akk0y7li6c";
};
propagatedBuildInputs = [ pyserial pyudev ];
meta = with lib; {
homepage = https://github.com/dhylands/rshell;
description = "Remote Shell for MicroPython";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
};
}