1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 cryptography,
6 python-axolotl-curve25519,
7 protobuf,
8}:
9
10buildPythonPackage rec {
11 pname = "python-axolotl";
12 version = "0.2.3";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1bwdp24fmriffwx91aigs9k162albb51iskp23nc939z893q23py";
18 };
19
20 propagatedBuildInputs = [
21 cryptography
22 python-axolotl-curve25519
23 protobuf
24 ];
25
26 meta = with lib; {
27 homepage = "https://github.com/tgalal/python-axolotl";
28 description = "Python port of libaxolotl-android";
29 maintainers = [ ];
30 license = licenses.gpl3;
31 };
32}