83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
34 lines
848 B
Nix
34 lines
848 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, lxml
|
|
, sqlalchemy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cinemagoer";
|
|
version = "2022.12.27";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-uUq/6Uijv6krBNCa5ftBWG/uYLs/5pLyDONLvBoxjYo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
sqlalchemy
|
|
];
|
|
|
|
# Tests require networking, and https://github.com/cinemagoer/cinemagoer/issues/240
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "imdb" ]; # Former "imdbpy", upstream is yet to rename here
|
|
|
|
meta = with lib; {
|
|
description = "A Python package for retrieving and managing the data of the IMDb movie database about movies and people";
|
|
downloadPage = "https://github.com/cinemagoer/cinemagoer/";
|
|
homepage = "https://cinemagoer.github.io/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|