mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
mpfshell: init at 0.8.1 (#28384)
This commit is contained in:
parent
a379ee6863
commit
9fbb6e8e3a
23
pkgs/development/tools/mpfshell/default.nix
Normal file
23
pkgs/development/tools/mpfshell/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -8049,6 +8049,8 @@ with pkgs;
|
|||
|
||||
mpfi = callPackage ../development/libraries/mpfi { };
|
||||
|
||||
mpfshell = callPackage ../development/tools/mpfshell { };
|
||||
|
||||
# A GMP fork
|
||||
mpir = callPackage ../development/libraries/mpir {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue