nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 python3Packages,
4 fetchPypi,
5}:
6
7python3Packages.buildPythonApplication rec {
8 pname = "rshell";
9 version = "0.0.36";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-SmbYNSB0eVUOWdDdPoMAPQTE7KeKTkklD4h+0t1LC/U=";
15 };
16
17 dependencies = with python3Packages; [
18 pyserial
19 pyudev
20 ];
21
22 meta = {
23 homepage = "https://github.com/dhylands/rshell";
24 description = "Remote Shell for MicroPython";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ c0deaddict ];
27 };
28}