2022-08-12 12:06:08 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, lxml
|
|
|
|
, sqlalchemy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cinemagoer";
|
2023-01-20 10:41:00 +00:00
|
|
|
version = "2022.12.27";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-uUq/6Uijv6krBNCa5ftBWG/uYLs/5pLyDONLvBoxjYo=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2022-10-06 18:32:54 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
}
|