blob: 1c0e848ebc1e3a4f71fa14f4cccb4fc52792ea37 (
plain)
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
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
cryptography,
python-axolotl-curve25519,
protobuf,
}:
buildPythonPackage rec {
pname = "python-axolotl";
version = "0.2.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1bwdp24fmriffwx91aigs9k162albb51iskp23nc939z893q23py";
};
propagatedBuildInputs = [
cryptography
python-axolotl-curve25519
protobuf
];
meta = {
homepage = "https://github.com/tgalal/python-axolotl";
description = "Python port of libaxolotl-android";
maintainers = [ ];
license = lib.licenses.gpl3;
};
}
|