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 , buildPythonPackage
, fetchPypi , fetchPypi
, requests-cache , requests-cache
, pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -15,8 +16,13 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests-cache ]; propagatedBuildInputs = [ requests-cache ];
checkInputs = [ pytest ];
# requires network access
doCheck = false;
meta = with stdenv.lib; { 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"; homepage = "https://github.com/dbr/tvdb_api";
license = licenses.unlicense; license = licenses.unlicense;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];