depot/third_party/nixpkgs/pkgs/development/tools/rshell/default.nix
Default email 07d6a74cbb Project import generated by Copybara.
GitOrigin-RevId: f5e8bdd07d1afaabf6b37afc5497b1e498b8046f
2021-03-19 18:17:44 +01:00

20 lines
528 B
Nix

{ 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 ];
};
}