pythonPackages.tmdb3: move expression
This commit is contained in:
18
pkgs/development/python-modules/tmdb3/default.nix
Normal file
18
pkgs/development/python-modules/tmdb3/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tmdb3";
|
||||
version = "0.6.17";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "64a6c3f1a60a9d8bf18f96a5403f3735b334040345ac3646064931c209720972";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python implementation of the v3 API for TheMovieDB.org, allowing access to movie and cast information";
|
||||
homepage = https://pypi.python.org/pypi/tmdb3;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user