From afe9649210cace6d3ee9046684d4ea27dc4fd15d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 13 Dec 2017 11:35:39 +0100 Subject: [PATCH] python-suseapi: update to latest version Unfortunately, the test suite now depends on additional packages that we don't have, so we can no longer run the tests at the moment. --- 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 2e1a2db61b7..e89f5f89ac6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24261,19 +24261,23 @@ EOF suseapi = buildPythonPackage rec { name = "${pname}-${version}"; pname = "suseapi"; - version = "0.24-5-g9937e3b"; + version = "0.24-31-g0fcbe96"; src = pkgs.fetchFromGitHub { owner = "openSUSE"; repo = "python-${pname}"; rev = version; - sha256 = "1144h26wrzazzy6y3yy163fccqmggk5hazjkk8l9a547390ilgrv"; + sha256 = "0hyzq0h1w8gp0zfvhqh7qsgcg1wp05a14371m6bn5a7gss93rbv4"; }; propagatedBuildInputs = with self; [ django suds-jurko ldap mechanize beautifulsoup4 pyxdg dateutil requests ]; + buildInputs = with self; [ httpretty ]; + + doCheck = false; + meta = { homepage = "https://github.com/openSUSE/python-suseapi/"; description = "Python module to work with various SUSE services";