1 { buildPythonPackage, lib, fetchFromGitHub, six, python-axolotl, pytest
2 , isPy3k, consonance, appdirs
5 buildPythonPackage rec {
9 # The Python 2.x support of this package is incompatible with `six==1.11`:
10 # https://github.com/tgalal/yowsup/issues/2416#issuecomment-365113486
13 src = fetchFromGitHub {
17 sha256 = "0wb8yl685nr1i3vx89hwan5m6a482x8g48f5ksvdlph538p720pm";
20 checkInputs = [ pytest ];
22 HOME=$(mktemp -d) py.test yowsup
25 patches = [ ./dependency-fixes.patch ];
27 propagatedBuildInputs = [ six python-axolotl consonance appdirs ];
30 homepage = "https://github.com/tgalal/yowsup";
31 description = "The python WhatsApp library";
32 license = licenses.gpl3;
33 maintainers = with maintainers; [ SuperSandro2000 ];