From 7bb75b3c41a0f82de80641fb033eae57c7e36622 Mon Sep 17 00:00:00 2001 From: Pooya Moradi Date: Mon, 16 Aug 2021 12:20:30 +0430 Subject: rshell: move the directory to pkgs/development/embedded/ --- pkgs/development/embedded/rshell/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/development/embedded/rshell/default.nix (limited to 'pkgs/development/embedded') diff --git a/pkgs/development/embedded/rshell/default.nix b/pkgs/development/embedded/rshell/default.nix new file mode 100644 index 00000000000..bcda3c02dd6 --- /dev/null +++ b/pkgs/development/embedded/rshell/default.nix @@ -0,0 +1,20 @@ +{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }: + +buildPythonApplication rec { + pname = "rshell"; + version = "0.0.30"; + + src = fetchPypi { + inherit pname version; + sha256 = "d2002d40d735204037d6142a6c2d51beecc763c124faaf759cabf7acd945be95"; + }; + + propagatedBuildInputs = [ pyserial pyudev ]; + + meta = with lib; { + homepage = "https://github.com/dhylands/rshell"; + description = "Remote Shell for MicroPython"; + license = licenses.mit; + maintainers = with maintainers; [ c0deaddict ]; + }; +} -- cgit 1.4.1