gnupg22: drop, libgcrypt_1_8: drop (#371269)
[NixPkgs.git] / pkgs / development / embedded / rshell / default.nix
blob5d6c1bd2fba932a9ce77a29292eab2974242a7a0
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , pyserial
5 , pyudev
6 }:
8 buildPythonApplication rec {
9   pname = "rshell";
10   version = "0.0.36";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-SmbYNSB0eVUOWdDdPoMAPQTE7KeKTkklD4h+0t1LC/U=";
15   };
17   propagatedBuildInputs = [
18     pyserial
19     pyudev
20   ];
22   meta = with lib; {
23     homepage = "https://github.com/dhylands/rshell";
24     description = "Remote Shell for MicroPython";
25     license = licenses.mit;
26     maintainers = with maintainers; [ c0deaddict ];
27   };