about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
blob: 5b5669a3a6a209d8f7f9c5af85967b28f6874ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{ lib
, stdenv
, python3Packages
, fetchFromGitHub
, installShellFiles
, nixosTests
, enableDbusUi ? true
}:

python3Packages.buildPythonApplication rec {
  pname = "pantalaimon";
  version = "0.10.5";
  pyproject = true;

  # pypi tarball miss tests
  src = fetchFromGitHub {
    owner = "matrix-org";
    repo = "pantalaimon";
    rev = version;
    hash = "sha256-yMhE3wKRbFHoL0vdFR8gMkNU7Su4FHbAwKQYADaaWpk=";
  };

  build-system = [
    installShellFiles
  ] ++ (with python3Packages; [
    setuptools
    pythonRelaxDepsHook
  ]);

  pythonRelaxDeps = [
    "matrix-nio"
  ];

  dependencies = with python3Packages; [
    aiohttp
    appdirs
    attrs
    cachetools
    click
    janus
    keyring
    logbook
    matrix-nio
    peewee
    prompt-toolkit
  ]
  ++ matrix-nio.optional-dependencies.e2e
  ++ lib.optionals enableDbusUi optional-dependencies.ui;

  optional-dependencies.ui = with python3Packages; [
    dbus-python
    notify2
    pygobject3
    pydbus
  ];

  nativeCheckInputs = with python3Packages; [
    aioresponses
    faker
    pytest-aiohttp
    pytestCheckHook
  ]
  ++ lib.flatten (lib.attrValues optional-dependencies);

  # darwin has difficulty communicating with server, fails some integration tests
  doCheck = !stdenv.isDarwin;

  postInstall = ''
    installManPage docs/man/*.[1-9]
  '';

  passthru.tests = {
    inherit (nixosTests) pantalaimon;
  };

  meta = with lib; {
    description = "An end-to-end encryption aware Matrix reverse proxy daemon";
    homepage = "https://github.com/matrix-org/pantalaimon";
    license = licenses.asl20;
    maintainers = with maintainers; [ valodim ];
  };
}