From 984409db686463ee213f379bd3609134b5ac829a Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Tue, 19 Jan 2016 21:50:03 -0500 Subject: [PATCH] sopel: 6.1.1 -> 6.2.1 test commit --- pkgs/top-level/python-packages.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 588c952b2302..0ae841378828 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18315,17 +18315,21 @@ in modules // { }; sopel = buildPythonPackage rec { - name = "sopel-6.1.1"; + name = "sopel-6.2.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz"; - sha256 = "0nr2a88bkxg2593dd947qkh96g8j32q7pl7x9zvx4158h4bgx99y"; + sha256 = "06m5clmg9x0bsnhvl5d75mskwqnxvkdd00p0dqnpwip9vmq6n8cz"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ praw xmltodict pytz pyenchant pygeoip ]; disabled = isPyPy || isPy26 || isPy27; + checkPhase = '' + ${python.interpreter} test/*.py + ''; meta = { description = "Simple and extensible IRC bot"; homepage = "http://sopel.chat";