python3Packages.consonance: init at 0.1.3
This commit is contained in:
parent
d170246aae
commit
d8d34797d7
29
pkgs/development/python-modules/consonance/default.nix
Normal file
29
pkgs/development/python-modules/consonance/default.nix
Normal file
@ -0,0 +1,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";
|
||||||
|
};
|
||||||
|
}
|
@ -1718,6 +1718,8 @@ in {
|
|||||||
|
|
||||||
configshell = callPackage ../development/python-modules/configshell { };
|
configshell = callPackage ../development/python-modules/configshell { };
|
||||||
|
|
||||||
|
consonance = callPackage ../development/python-modules/consonance { };
|
||||||
|
|
||||||
constantly = callPackage ../development/python-modules/constantly { };
|
constantly = callPackage ../development/python-modules/constantly { };
|
||||||
|
|
||||||
cornice = callPackage ../development/python-modules/cornice { };
|
cornice = callPackage ../development/python-modules/cornice { };
|
||||||
|
Loading…
Reference in New Issue
Block a user