{ lib , buildPythonPackage , rns , fetchFromGitHub , lxmf , urwid , pythonOlder }: buildPythonPackage rec { pname = "nomadnet"; version = "0.1.8"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "markqvist"; repo = "NomadNet"; rev = version; hash = "sha256-gqUCE35RPt7k0RAoZGJS1srB5K4v6gJkbTKQs8Lajm8="; }; propagatedBuildInputs = [ rns lxmf urwid ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "nomadnet" ]; meta = with lib; { description = "Off-grid, resilient mesh communication"; homepage = "https://github.com/markqvist/NomadNet"; license = licenses.gpl3Only; maintainers = with maintainers; [ fab ]; }; }