biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / embedded / rshell / default.nix
blob591331464e3ad65041cd1a0e3a9f2bf89182a594
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , pyserial
5 , pyudev
6 , pythonOlder
7 }:
9 buildPythonApplication rec {
10   pname = "rshell";
11   version = "0.0.32";
13   disabled = pythonOlder "3.4";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-frIwZ21JzVgxRS+KouBjDShHCP1lCoUwwySy2oFGcJ8=";
18   };
20   propagatedBuildInputs = [
21     pyserial
22     pyudev
23   ];
25   meta = with lib; {
26     homepage = "https://github.com/dhylands/rshell";
27     description = "Remote Shell for MicroPython";
28     license = licenses.mit;
29     maintainers = with maintainers; [ c0deaddict ];
30   };