1{ lib, buildPythonPackage, fetchPypi, cryptography, python-axolotl-curve25519, protobuf }:
2
3buildPythonPackage rec {
4 pname = "python-axolotl";
5 version = "0.1.42";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "ef78c2efabcd4c33741669334bdda04710a3ef0e00b653f00127acff6460a7f0";
10 };
11
12 propagatedBuildInputs = [ cryptography python-axolotl-curve25519 protobuf ];
13
14 meta = with lib; {
15 homepage = https://github.com/tgalal/python-axolotl;
16 description = "Python port of libaxolotl-android";
17 maintainers = with maintainers; [ abbradar ];
18 license = licenses.gpl3;
19 };
20}