lol

mpfshell: init at 0.8.1 (#28384)

authored by

Alvar and committed by
Franz Pletz
9fbb6e8e a379ee68

+25
+23
pkgs/development/tools/mpfshell/default.nix
··· 1 + { lib, python3Packages, fetchFromGitHub }: 2 + 3 + python3Packages.buildPythonPackage rec { 4 + name = "mpfshell-${version}"; 5 + version = "0.8.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "wendlers"; 9 + repo = "mpfshell"; 10 + rev = version; 11 + sha256 = "1n4ap4yfii54y125f9n9krc0lc0drwg3hsq4z6g89xbswdx9sygr"; 12 + }; 13 + 14 + propagatedBuildInputs = with python3Packages; [ 15 + pyserial colorama websocket_client 16 + ]; 17 + 18 + meta = with lib; { 19 + homepage = https://github.com/wendlers/mpfshell; 20 + description = "A simple shell based file explorer for ESP8266 Micropython based devices"; 21 + license = licenses.mit; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 8049 8049 8050 8050 mpfi = callPackage ../development/libraries/mpfi { }; 8051 8051 8052 + mpfshell = callPackage ../development/tools/mpfshell { }; 8053 + 8052 8054 # A GMP fork 8053 8055 mpir = callPackage ../development/libraries/mpir {}; 8054 8056