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