croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / python-axolotl / default.nix
blob8af55b83ff587ff4a857b8800378c831cb8d3219
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   cryptography,
6   python-axolotl-curve25519,
7   protobuf,
8 }:
10 buildPythonPackage rec {
11   pname = "python-axolotl";
12   version = "0.2.3";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "1bwdp24fmriffwx91aigs9k162albb51iskp23nc939z893q23py";
18   };
20   propagatedBuildInputs = [
21     cryptography
22     python-axolotl-curve25519
23     protobuf
24   ];
26   meta = with lib; {
27     homepage = "https://github.com/tgalal/python-axolotl";
28     description = "Python port of libaxolotl-android";
29     maintainers = with maintainers; [ abbradar ];
30     license = licenses.gpl3;
31   };