mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
ce00d09031
pythonPackages.nbxmpp: 4.2.2 → 4.3.1 pythonPackages.omemo-dr: init at 1.0.0
23 lines
467 B
Nix
23 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/";
|
|
};
|
|
}
|