nixpkgs/pkgs/development/tools/rshell/default.nix

21 lines
514 B
Nix
Raw Normal View History

2018-07-20 08:30:11 +01:00
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
buildPythonApplication rec {
pname = "rshell";
2020-01-30 08:53:22 +00:00
version = "0.0.26";
2018-07-20 08:30:11 +01:00
src = fetchPypi {
inherit pname version;
2020-01-30 08:53:22 +00:00
sha256 = "05nvfaykzwj1y86fcckrnvmrva7849lkbmpxsy2hb9akk0y7li6c";
2018-07-20 08:30:11 +01:00
};
propagatedBuildInputs = [ pyserial pyudev ];
meta = with lib; {
homepage = https://github.com/dhylands/rshell;
description = "Remote Shell for MicroPython";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
};
}