summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
blob: 77870ed683656c44d6d568845dbd53c7b2367efa (plain)
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
{ lib
, buildPythonPackage
, fetchPypi
, six
, attrs
, twisted
, pyopenssl
, service-identity
, autobahn
, treq
, mock
}:

buildPythonPackage rec {
  version = "0.4.1";
  pname = "magic-wormhole-mailbox-server";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1af10592909caaf519c00e706eac842c5e77f8d4356215fe9c61c7b2258a88fb";
  };

  propagatedBuildInputs = [
    attrs
    six
    twisted
    autobahn
  ] ++ autobahn.extras-require.twisted
  ++ twisted.extras-require.tls;

  checkInputs = [
    treq
    mock
    twisted
  ];
  checkPhase = ''
    trial -j$NIX_BUILD_CORES wormhole_mailbox_server
  '';

  meta = with lib; {
    description = "Securely transfer data between computers";
    homepage = "https://github.com/warner/magic-wormhole-mailbox-server";
    license = licenses.mit;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}