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