9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
22 lines
467 B
Nix
22 lines
467 B
Nix
{ lib, buildPythonPackage, fetchPypi, cryptography, protobuf }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "omemo-dr";
|
|
version = "1.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-sP5QI+lHoXt0D7ftSqJGEg1vIdgZtYEulN/JVwUgvmE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
protobuf
|
|
];
|
|
|
|
meta = {
|
|
description = "OMEMO Double Ratchet";
|
|
license = lib.licenses.lgpl3;
|
|
homepage = "https://dev.gajim.org/gajim/omemo-dr/";
|
|
};
|
|
}
|