Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
887 B
Nix
38 lines
887 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage {
|
|
pname = "mpfshell";
|
|
version = "0.9.3-unstable-2025-01-09";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wendlers";
|
|
repo = "mpfshell";
|
|
rev = "d290096ede985e8730b2ed02d130befdb65fde4e";
|
|
hash = "sha256-+AUlBHCzxDKatXrDmmBsf0g4cKZaa9Ui92M0d+49rKo=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
dependencies = with python3Packages; [
|
|
pyserial
|
|
colorama
|
|
websocket-client
|
|
standard-telnetlib # Python no longer provides telnetlib since python313
|
|
];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "mp.mpfshell" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/wendlers/mpfshell";
|
|
description = "Simple shell based file explorer for ESP8266 Micropython based devices";
|
|
mainProgram = "mpfshell";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|