depot/third_party/nixpkgs/pkgs/development/python-modules/yowsup/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

55 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
isPy3k,
fetchFromGitHub,
setuptools,
appdirs,
consonance,
protobuf,
python-axolotl,
six,
pyasyncore,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "yowsup";
version = "3.3.0";
pyproject = true;
# The Python 2.x support of this package is incompatible with `six==1.11`:
# https://github.com/tgalal/yowsup/issues/2416#issuecomment-365113486
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "tgalal";
repo = "yowsup";
rev = "v${version}";
sha256 = "1pz0r1gif15lhzdsam8gg3jm6zsskiv2yiwlhaif5rl7lv3p0v7q";
};
pythonRelaxDeps = true;
pythonRemoveDeps = [ "argparse" ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
dependencies = [
appdirs
consonance
protobuf
python-axolotl
six
] ++ lib.optionals (!pythonOlder "3.12") [ pyasyncore ];
meta = with lib; {
homepage = "https://github.com/tgalal/yowsup";
description = "Python WhatsApp library";
mainProgram = "yowsup-cli";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}