biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / mpfshell / default.nix
blob331e80140bb81840f74284f5a9cc83ad05d53207
1 { lib, python3Packages, fetchFromGitHub }:
3 python3Packages.buildPythonPackage rec {
4   pname = "mpfshell-unstable";
5   version = "2020-04-11";
7   src = fetchFromGitHub {
8     owner = "wendlers";
9     repo = "mpfshell";
10     rev = "429469fcccbda770fddf7a4277f5db92b1217664";
11     sha256 = "0md6ih9vp65dacqy8gki3b2p4v76xb9ijqmxymk4b4f9z684x2m7";
12   };
14   propagatedBuildInputs = with python3Packages; [
15     pyserial colorama websocket-client
16   ];
18   doCheck = false;
19   pythonImportsCheck = [ "mp.mpfshell" ];
21   meta = with lib; {
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;
26   };