mpfshell: init at 0.8.1 (#28384)

This commit is contained in:
Alvar 2017-08-22 03:38:46 +02:00 committed by Franz Pletz
parent a379ee6863
commit 9fbb6e8e3a
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,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;
};
}

View File

@ -8049,6 +8049,8 @@ with pkgs;
mpfi = callPackage ../development/libraries/mpfi { };
mpfshell = callPackage ../development/tools/mpfshell { };
# A GMP fork
mpir = callPackage ../development/libraries/mpir {};