My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-axolotl/default.nix

20 lines
590 B

{ lib, buildPythonPackage, fetchPypi, cryptography, python-axolotl-curve25519, protobuf }:
buildPythonPackage rec {
pname = "python-axolotl";
version = "0.2.3";
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 = with maintainers; [ abbradar ];
license = licenses.gpl3;
};
}