about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tvdb_api/default.nix
blob: 758c699d4466245ed676f6e2c83d694aa8e495da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, requests-cache
}:

buildPythonPackage rec {
  pname = "tvdb_api";
  version = "1.10";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0hq887yb3rwc0rcw32lh7xdkk9bbrqy274aspzqkd6f7dyhp73ih";
  };

  propagatedBuildInputs = [ requests-cache ];

  meta = with stdenv.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 ];
  };

}