1 { lib, python3Packages, fetchFromGitHub }:
3 python3Packages.buildPythonPackage rec {
4 pname = "mpfshell-unstable";
5 version = "2020-04-11";
7 src = fetchFromGitHub {
10 rev = "429469fcccbda770fddf7a4277f5db92b1217664";
11 sha256 = "0md6ih9vp65dacqy8gki3b2p4v76xb9ijqmxymk4b4f9z684x2m7";
14 propagatedBuildInputs = with python3Packages; [
15 pyserial colorama websocket-client
19 pythonImportsCheck = [ "mp.mpfshell" ];
22 homepage = "https://github.com/wendlers/mpfshell";
23 description = "A simple shell based file explorer for ESP8266 Micropython based devices";
24 mainProgram = "mpfshell";
25 license = licenses.mit;