abbb737413
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-python-axolotl/versions
21 lines
588 B
Nix
21 lines
588 B
Nix
{ lib, buildPythonPackage, fetchPypi, cryptography, python-axolotl-curve25519, protobuf }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-axolotl";
|
|
version = "0.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1had4dq4n26c3hp62rbmhvs1dj3j3z2jhcbddnbsmqmiky8dqs39";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|