Files
2026-07-11 13:55:04 +00:00

51 lines
833 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
lxmf,
msgpack,
qrcode,
rns,
setuptools,
urwid,
}:
buildPythonPackage (finalAttrs: {
pname = "nomadnet";
version = "1.2.7";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) version pname;
hash = "sha256-52pFpgeRBXouASwpx8vLn+ZDHx7Tl6NttkgRkENhT1s=";
};
build-system = [ setuptools ];
dependencies = [
rns
lxmf
msgpack
urwid
qrcode
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "nomadnet" ];
meta = {
description = "Off-grid, resilient mesh communication";
homepage = "https://github.com/markqvist/NomadNet";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
drupol
fab
];
mainProgram = "nomadnet";
};
})