depot/third_party/nixpkgs/pkgs/development/python-modules/tvdb-api/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
736 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests-cache,
pytest,
}:
buildPythonPackage rec {
pname = "tvdb-api";
version = "3.2.0-beta";
format = "setuptools";
src = fetchFromGitHub {
owner = "dbr";
repo = "tvdb_api";
rev = "ce0382181a9e08a5113bfee0fed2c78f8b1e613f";
hash = "sha256-poUuwySr6+8U9PIHhqFaR7nXzh8kSaW7mZkuKTUJKj8=";
};
propagatedBuildInputs = [ requests-cache ];
nativeCheckInputs = [ 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 ];
};
}