summary refs log tree commit diff
path: root/pkgs/development/python-modules/imdbpy/default.nix
blob: ab4d2a5ce0c1c8ae890b0b86003c5ee64097f47c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, sqlalchemy
}:

buildPythonPackage rec {
  pname = "imdbpy";
  version = "2021.4.18";

  src = fetchPypi {
    pname = "IMDbPY";
    inherit version;
    sha256 = "af57f03638ba3b8ab3d696bfef0eeaf6414385c85f09260aba0a16b32174853f";
  };

  propagatedBuildInputs = [
    lxml
    sqlalchemy
  ];

  # Tests require networking, and https://github.com/alberanid/imdbpy/issues/240
  doCheck = false;

  pythonImportsCheck = [ "imdb" ];

  meta = with lib; {
    description = "Python package for retrieving and managing the data of the IMDb database";
    homepage = "https://imdbpy.github.io/";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ ivar ];
  };
}