rshell: init at 0.0.14
This commit is contained in:
parent
d635e33887
commit
812f4749ae
@ -589,6 +589,11 @@
|
||||
github = "c0bw3b";
|
||||
name = "Renaud";
|
||||
};
|
||||
c0deaddict = {
|
||||
email = "josvanbakel@protonmail.com";
|
||||
github = "c0deaddict";
|
||||
name = "Jos van Bakel";
|
||||
};
|
||||
c0dehero = {
|
||||
email = "codehero@nerdpol.ch";
|
||||
name = "CodeHero";
|
||||
|
20
pkgs/development/tools/rshell/default.nix
Normal file
20
pkgs/development/tools/rshell/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "rshell";
|
||||
version = "0.0.14";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "12gh9l13lwnlp330jl3afy3wgfkpjvdxr43flrg9k9kyyhbr191g";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyserial pyudev ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/dhylands/rshell;
|
||||
description = "Remote Shell for MicroPython";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ c0deaddict ];
|
||||
};
|
||||
}
|
@ -11719,6 +11719,8 @@ with pkgs;
|
||||
|
||||
ronn = callPackage ../development/tools/ronn { };
|
||||
|
||||
rshell = python3.pkgs.callPackage ../development/tools/rshell { };
|
||||
|
||||
rubberband = callPackage ../development/libraries/rubberband {
|
||||
inherit (vamp) vampSDK;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user