1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "tmdb3"; 5 version = "0.7.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "9b6e043b8a65d159e7fc8f720badc7ffee5109296e38676c107454e03a895983"; 10 }; 11 12 # no tests implemented 13 doCheck = false; 14 15 meta = with lib; { 16 description = "Python implementation of the v3 API for TheMovieDB.org, allowing access to movie and cast information"; 17 homepage = https://pypi.python.org/pypi/tmdb3; 18 license = licenses.bsd3; 19 }; 20}