mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
python.pkgs.tvdb_api: disable tests
This commit is contained in:
parent
1435d45b4e
commit
a5c3c8e409
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user