14c13ed390
I'm not exactly sure why, but it seems as the python2 build of yowsup is breaking. see https://github.com/tgalal/yowsup/issues/2325 It seems to be recommended to use python3 for building and disable the usage of python2 which fixed the build.
37 lines
899 B
Nix
37 lines
899 B
Nix
{ buildPythonPackage, stdenv, fetchFromGitHub, six, python-axolotl, pytest
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "yowsup";
|
|
version = "2.5.2";
|
|
|
|
# python2 is currently incompatible with yowsup:
|
|
# https://github.com/tgalal/yowsup/issues/2325#issuecomment-343516519
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tgalal";
|
|
repo = "yowsup";
|
|
rev = "v${version}";
|
|
sha256 = "16l8jmr32wwvl11m0a4r4id3dkfqj2n7dn6gky1077xwmj2da4fl";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
checkPhase = ''
|
|
HOME=$(mktemp -d) py.test yowsup
|
|
'';
|
|
|
|
patches = [ ./argparse-dependency.patch ];
|
|
|
|
propagatedBuildInputs = [ six python-axolotl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/tgalal/yowsup";
|
|
description = "The python WhatsApp library";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
};
|
|
}
|