rshell: init at 0.0.14

This commit is contained in:
Jos van Bakel
2018-07-26 06:12:06 -07:00
committed by Ryan Mulligan
parent d635e33887
commit 812f4749ae
3 changed files with 27 additions and 0 deletions
+20
View 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 ];
};
}