Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

43 lines
823 B
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
protobuf,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "omemo-dr";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-KoqMdyMdc5Sb3TdSeNTVomElK9ruUstiQayyUcIC02E=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
cryptography
protobuf
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "omemo_dr" ];
meta = with lib; {
description = "OMEMO Double Ratchet";
homepage = "https://dev.gajim.org/gajim/omemo-dr/";
changelog = "https://dev.gajim.org/gajim/omemo-dr/-/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = [ ];
};
}