python.pkgs.tvdb_api: disable tests

This commit is contained in:
Robert Schütz 2019-03-05 13:11:48 +01:00
parent 1435d45b4e
commit a5c3c8e409

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, requests-cache
, pytest
}:
buildPythonPackage rec {
@ -15,8 +16,13 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests-cache ];
checkInputs = [ pytest ];
# requires network access
doCheck = false;
meta = with stdenv.lib; {
description = "Simple to use TVDB (thetvdb.com) API in Python.";
description = "Simple to use TVDB (thetvdb.com) API in Python";
homepage = "https://github.com/dbr/tvdb_api";
license = licenses.unlicense;
maintainers = with maintainers; [ peterhoeg ];