Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / python-axolotl / default.nix
blob3b55811f4e47c2c7d30188eb9e6208d184ac65eb
1 { lib, buildPythonPackage, fetchPypi, cryptography, python-axolotl-curve25519, protobuf }:
3 buildPythonPackage rec {
4   pname = "python-axolotl";
5   version = "0.2.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1bwdp24fmriffwx91aigs9k162albb51iskp23nc939z893q23py";
10   };
12   propagatedBuildInputs = [ cryptography python-axolotl-curve25519 protobuf ];
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   };