1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests-cache
5, pytest
6}:
7
8buildPythonPackage rec {
9 pname = "tvdb_api";
10 version = "3.1.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "f63f6db99441bb202368d44aaabc956acc4202b18fc343a66bf724383ee1f563";
15 };
16
17 propagatedBuildInputs = [ requests-cache ];
18
19 checkInputs = [ pytest ];
20
21 # requires network access
22 doCheck = false;
23
24 meta = with lib; {
25 description = "Simple to use TVDB (thetvdb.com) API in Python";
26 homepage = "https://github.com/dbr/tvdb_api";
27 license = licenses.unlicense;
28 maintainers = with maintainers; [ peterhoeg ];
29 # https://github.com/dbr/tvdb_api/issues/94
30 broken = true;
31 };
32}