1{ lib
2, buildPythonPackage
3, fetchPypi
4, lxml
5, sqlalchemy
6}:
7
8buildPythonPackage rec {
9 pname = "cinemagoer";
10 version = "2022.2.11";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "8efe29dab44a7d275702f3160746015bd55c87b2eed85991dd57dda42594e6c6";
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}