summary refs log tree commit diff
path: root/pkgs/development/tools/mpfshell/default.nix
blob: 69048acb5baf25d5e64fa1e5a76d4ac4dec79780 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, python3Packages, fetchFromGitHub }:

python3Packages.buildPythonPackage rec {
  name = "mpfshell-${version}";
  version = "0.8.1";

  src = fetchFromGitHub {
    owner = "wendlers";
    repo = "mpfshell";
    rev = version;
    sha256 = "1n4ap4yfii54y125f9n9krc0lc0drwg3hsq4z6g89xbswdx9sygr";
  };

  propagatedBuildInputs = with python3Packages; [
    pyserial colorama websocket_client
  ];

  meta = with lib; {
    homepage = "https://github.com/wendlers/mpfshell";
    description = "A simple shell based file explorer for ESP8266 Micropython based devices";
    license = licenses.mit;
  };
}