Unverified Commit 0ff91555 authored by themadbit's avatar themadbit Committed by Sandro Jäckel
Browse files

python3Packages.oldmemo: init at 1.1.0

parent 11ef0602
Loading
Loading
Loading
Loading
+60 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  setuptools,

  typing-extensions,
  xeddsa,
  doubleratchet,
  omemo,
  x3dh,
  cryptography,
  protobuf,

  xmlschema,
}:

buildPythonPackage rec {
  pname = "oldmemo";
  version = "1.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Syndace";
    repo = "python-oldmemo";
    tag = "v${version}";
    hash = "sha256-iAsp42VcGsf3Nhk0I97Wi3SlpLxcA6BkVaFm1yY0HrY=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    typing-extensions
    xeddsa
    doubleratchet
    omemo
    x3dh
    cryptography
    protobuf
  ];

  optional-dependencies.xml = [
    xmlschema
  ];

  pythonImportsCheck = [
    "oldmemo"
  ];

  meta = {
    description = "Backend implementation of the `eu.siacs.conversations.axolotl` namespace for python-omemo";
    homepage = "https://github.com/Syndace/python-oldmemo";
    changelog = "https://github.com/Syndace/python-oldmemo/blob/${src.tag}/CHANGELOG.md";
    license = lib.licenses.agpl3Plus;
    maintainers = with lib.maintainers; [ themadbit ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10629,6 +10629,8 @@ self: super: with self; {
  oldest-supported-numpy = callPackage ../development/python-modules/oldest-supported-numpy { };
  oldmemo = callPackage ../development/python-modules/oldmemo { };
  olefile = callPackage ../development/python-modules/olefile { };
  oletools = callPackage ../development/python-modules/oletools { };