From 8c1403066ca01d502e92880475f30a306d42fbf7 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Sep 2017 18:30:09 +0200 Subject: [PATCH] rtv: 1.15.1 -> 1.18.0 Disable tests, which try to access the network. --- pkgs/applications/misc/rtv/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix index fbf9a933567..7e16da68f47 100644 --- a/pkgs/applications/misc/rtv/default.nix +++ b/pkgs/applications/misc/rtv/default.nix @@ -2,16 +2,19 @@ with pythonPackages; buildPythonApplication rec { - version = "1.15.1"; + version = "1.18.0"; name = "rtv-${version}"; src = fetchFromGitHub { owner = "michael-lazar"; repo = "rtv"; rev = "v${version}"; - sha256 = "037dhds1prxj7vsq15dr46wk3pfk3ixr0d60m3h796b6nbc1spya"; + sha256 = "00d2s29sp68hw8ljjmzn5dc5ly2s3c7qf0azwizgd3b40zlfgzcg"; }; + # Tests try to access network + doCheck = false; + checkPhase = '' py.test '';