ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cinemagoer / default.nix
blob8b62a57b306facecb38b7bfcbf7f6b4e496fa8e9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , lxml
5 , sqlalchemy
6 }:
8 buildPythonPackage rec {
9   pname = "cinemagoer";
10   version = "2022.2.11";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "8efe29dab44a7d275702f3160746015bd55c87b2eed85991dd57dda42594e6c6";
15   };
17   propagatedBuildInputs = [
18     lxml
19     sqlalchemy
20   ];
22   # Tests require networking, and https://github.com/cinemagoer/cinemagoer/issues/240
23   doCheck = false;
25   pythonImportsCheck = [ "imdb" ]; # Former "imdbpy", upstream is yet to rename here
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   };