mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
802 B
Nix
30 lines
802 B
Nix
{ 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";
|
|
};
|
|
}
|