Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nomadnet / default.nix
blobd7548d3f8bd807a21ea822442cdd7734d200968b
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , lxmf
5 , pythonOlder
6 , qrcode
7 , rns
8 , setuptools
9 , urwid
12 buildPythonPackage rec {
13   pname = "nomadnet";
14   version = "0.4.8";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "markqvist";
21     repo = "NomadNet";
22     rev = "refs/tags/${version}";
23     hash = "sha256-a8fLfTJePf+pejDTqYNXCZda24LaNtOwxwEmEMAnB0I=";
24   };
26   nativeBuildInputs = [
27     setuptools
28   ];
30   propagatedBuildInputs = [
31     rns
32     lxmf
33     urwid
34     qrcode
35   ];
37   # Module has no tests
38   doCheck = false;
40   pythonImportsCheck = [
41     "nomadnet"
42   ];
44   meta = with lib; {
45     description = "Off-grid, resilient mesh communication";
46     mainProgram = "nomadnet";
47     homepage = "https://github.com/markqvist/NomadNet";
48     changelog = "https://github.com/markqvist/NomadNet/releases/tag/${version}";
49     license = licenses.gpl3Only;
50     maintainers = with maintainers; [ fab ];
51   };