depot/third_party/nixpkgs/pkgs/development/python-modules/tvdb_api/default.nix
Default email 3b21d1e521 Project import generated by Copybara.
GitOrigin-RevId: 23cd13167a1432550e48734079c2ffeeb441fb96
2021-07-15 00:03:04 +02:00

32 lines
694 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests-cache
, pytest
}:
buildPythonPackage rec {
pname = "tvdb_api";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "f63f6db99441bb202368d44aaabc956acc4202b18fc343a66bf724383ee1f563";
};
propagatedBuildInputs = [ requests-cache ];
checkInputs = [ pytest ];
# requires network access
doCheck = false;
meta = with lib; {
description = "Simple to use TVDB (thetvdb.com) API in Python";
homepage = "https://github.com/dbr/tvdb_api";
license = licenses.unlicense;
maintainers = with maintainers; [ peterhoeg ];
# https://github.com/dbr/tvdb_api/issues/94
broken = true;
};
}