2018-07-23 11:27:09 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, cryptography, python-axolotl-curve25519, protobuf }:
|
2018-02-25 18:21:36 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "python-axolotl";
|
2019-05-25 19:31:33 +02:00
|
|
|
version = "0.2.3";
|
2018-02-25 18:21:36 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-25 19:31:33 +02:00
|
|
|
sha256 = "1bwdp24fmriffwx91aigs9k162albb51iskp23nc939z893q23py";
|
2018-02-25 18:21:36 +01:00
|
|
|
};
|
|
|
|
|
2018-07-23 11:27:09 +02:00
|
|
|
propagatedBuildInputs = [ cryptography python-axolotl-curve25519 protobuf ];
|
2018-02-25 18:21:36 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/tgalal/python-axolotl";
|
2018-02-25 18:21:36 +01:00
|
|
|
description = "Python port of libaxolotl-android";
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|