2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lxml,
|
|
|
|
sqlalchemy,
|
2022-08-12 12:06:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cinemagoer";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "2023.5.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-XOHXeuZUZwFhjxHlsVVqGdGO3srRttfZaXPsNJQbGPI=";
|
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; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Python package for retrieving and managing the data of the IMDb movie database about movies and people";
|
2022-08-12 12:06:08 +00:00
|
|
|
downloadPage = "https://github.com/cinemagoer/cinemagoer/";
|
|
|
|
homepage = "https://cinemagoer.github.io/";
|
|
|
|
license = licenses.gpl2Only;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
}
|