{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, rns, setuptools, }: buildPythonPackage rec { pname = "lxmf"; version = "0.5.7"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "markqvist"; repo = "lxmf"; rev = "refs/tags/${version}"; hash = "sha256-ekemsCs3Ils8ovDTzyi6aQ4Z0bnfTKpuQYBeh1MA94Q="; }; build-system = [ setuptools ]; dependencies = [ rns ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "LXMF" ]; meta = with lib; { description = "Lightweight Extensible Message Format for Reticulum"; homepage = "https://github.com/markqvist/lxmf"; changelog = "https://github.com/markqvist/LXMF/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; mainProgram = "lxmd"; }; }