linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / tvdb_api / default.nix
blob845aff673b761b0cbec1a91bd53e56628fc60eb7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests-cache
5 , pytest
6 }:
8 buildPythonPackage rec {
9   pname = "tvdb_api";
10   version = "3.0.2";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "6a0135815cb680da38d78121d4d659d8e54a25f4db2816cd86d62916b92f23b2";
15   };
17   propagatedBuildInputs = [ requests-cache ];
19   checkInputs = [ pytest ];
21   # requires network access
22   doCheck = false;
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   };