1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.yowsup: init at v2.5.2 (#30406)

* pythonPackages.yowsup: init at v2.5.2

* python.pkgs.yowsup: fix tests
This commit is contained in:
Maximilian Bosch 2017-10-14 11:54:59 +02:00 committed by Jörg Thalheim
parent 30b3b5d85f
commit eef496f01c
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,13 @@
diff --git a/setup.py b/setup.py
index 053ed07..60f0d9a 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import yowsup
import platform
import sys
-deps = ['python-dateutil', 'argparse', 'python-axolotl>=0.1.39', 'six']
+deps = ['python-dateutil', 'python-axolotl>=0.1.39', 'six']
if sys.version_info < (2,7):
deps += ['importlib']

View file

@ -0,0 +1,30 @@
{ buildPythonPackage, stdenv, fetchFromGitHub, six, python-axolotl, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "yowsup";
version = "2.5.2";
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 ];
};
}

View file

@ -26537,6 +26537,8 @@ EOF
};
};
yowsup = callPackage ../development/python-modules/yowsup { };
wptserve = callPackage ../development/python-modules/wptserve { };
yenc = callPackage ../development/python-modules/yenc { };