1{ lib
2, buildPythonPackage
3, fetchPypi
4, lxml
5, sqlalchemy
6}:
7
8buildPythonPackage rec {
9 pname = "cinemagoer";
10 version = "2023.5.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-XOHXeuZUZwFhjxHlsVVqGdGO3srRttfZaXPsNJQbGPI=";
15 };
16
17 propagatedBuildInputs = [
18 lxml
19 sqlalchemy
20 ];
21
22 # Tests require networking, and https://github.com/cinemagoer/cinemagoer/issues/240
23 doCheck = false;
24
25 pythonImportsCheck = [ "imdb" ]; # Former "imdbpy", upstream is yet to rename here
26
27 meta = with lib; {
28 description = "A Python package for retrieving and managing the data of the IMDb movie database about movies and people";
29 downloadPage = "https://github.com/cinemagoer/cinemagoer/";
30 homepage = "https://cinemagoer.github.io/";
31 license = licenses.gpl2Only;
32 maintainers = with maintainers; [ ];
33 };
34}