Files
nixpkgs/pkgs/development/python-modules/python-axolotl/default.nix
phaer 978931902c maintainers: drop abbradar
Listed as maintainer for ~170 packages but last commit that made it to
master was 6786ceb in February 2022.

Unresponsive on PRs, such as i.e. #411522
2025-08-22 09:49:27 +02:00

33 lines
615 B
Nix

{
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 = with lib; {
homepage = "https://github.com/tgalal/python-axolotl";
description = "Python port of libaxolotl-android";
maintainers = [ ];
license = licenses.gpl3;
};
}