nixpkgs-suyu/pkgs/development/embedded/rshell/default.nix

21 lines
528 B
Nix
Raw Normal View History

2018-07-20 09:30:11 +02:00
{ lib, buildPythonApplication, fetchPypi, pyserial, pyudev }:
buildPythonApplication rec {
pname = "rshell";
2021-03-09 16:50:43 +01:00
version = "0.0.30";
2018-07-20 09:30:11 +02:00
src = fetchPypi {
inherit pname version;
2021-03-09 16:50:43 +01:00
sha256 = "d2002d40d735204037d6142a6c2d51beecc763c124faaf759cabf7acd945be95";
2018-07-20 09:30:11 +02:00
};
propagatedBuildInputs = [ pyserial pyudev ];
meta = with lib; {
2020-03-31 07:03:04 +02:00
homepage = "https://github.com/dhylands/rshell";
2018-07-20 09:30:11 +02:00
description = "Remote Shell for MicroPython";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
};
}