about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/consonance/default.nix
blob: 3940686f18c7adb4ada32129b745a2aa8b02df63 (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
{ buildPythonPackage, lib, fetchFromGitHub, pytest, dissononce, python-axolotl-curve25519
, transitions, protobuf, nose
}:

buildPythonPackage rec {
  pname = "consonance";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "tgalal";
    repo = "consonance";
    rev = version;
    sha256 = "1ifs0fq6i41rdna1kszv5sf87qbqx1mn98ffyx4xhw4i9r2grrjv";
  };

  checkInputs = [ nose ];
  checkPhase = ''
    # skipping online test as it requires network with uplink
    nosetests tests/test_handshakes_offline.py
  '';

  propagatedBuildInputs = [ dissononce python-axolotl-curve25519 transitions protobuf ];

  meta = with lib; {
    homepage = "https://pypi.org/project/consonance/";
    license = licenses.gpl3;
    description = "WhatsApp's handshake implementation using Noise Protocol";
  };
}