mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
590 B
Nix
21 lines
590 B
Nix
{ 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;
|
|
};
|
|
}
|