3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rshell/default.nix

21 lines
528 B
Nix
Raw Normal View History

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