python.pkgs.python-axolotl: move to a separate file

This commit is contained in:
Nikolay Amiantov 2018-02-25 20:21:36 +03:00
parent 370f5b4c57
commit 22f5d7e8a9
2 changed files with 23 additions and 21 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchurl, python-axolotl-curve25519, protobuf, pycrypto }:
buildPythonPackage rec {
name = "python-axolotl-${version}";
version = "0.1.39";
src = fetchurl {
url = "mirror://pypi/p/python-axolotl/${name}.tar.gz";
sha256 = "09bf5gfip9x2wr0ij43p39ac6z2iqzn7kgpi2jjbwpnhs0vwkycs";
};
propagatedBuildInputs = [ python-axolotl-curve25519 protobuf pycrypto ];
# IV == 0 in tests is not supported by pycryptodome (our pycrypto drop-in)
doCheck = false;
meta = with lib; {
homepage = https://github.com/tgalal/python-axolotl;
description = "Python port of libaxolotl-android";
maintainers = with maintainers; [ abbradar ];
license = licenses.gpl3;
};
}

View File

@ -6126,27 +6126,7 @@ in {
};
};
python-axolotl = buildPythonPackage rec {
name = "python-axolotl-${version}";
version = "0.1.39";
src = pkgs.fetchurl {
url = "mirror://pypi/p/python-axolotl/${name}.tar.gz";
sha256 = "09bf5gfip9x2wr0ij43p39ac6z2iqzn7kgpi2jjbwpnhs0vwkycs";
};
propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf pycrypto ];
# IV == 0 in tests is not supported by pycryptodome (our pycrypto drop-in)
doCheck = false;
meta = {
homepage = "https://github.com/tgalal/python-axolotl";
description = "Python port of libaxolotl-android";
maintainers = with maintainers; [ abbradar ];
license = licenses.gpl3;
platforms = platforms.all;
};
};
python-axolotl = callPackage ../development/python-modules/python-axolotl { };
python-axolotl-curve25519 = buildPythonPackage rec {
name = "python-axolotl-curve25519-${version}";