nixpkgs/pkgs/development/python-modules/yowsup/default.nix
Maximilian Bosch eef496f01c pythonPackages.yowsup: init at v2.5.2 (#30406)
* pythonPackages.yowsup: init at v2.5.2

* python.pkgs.yowsup: fix tests
2017-10-14 10:54:59 +01:00

31 lines
744 B
Nix

{ 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 ];
};
}