depot/third_party/nixpkgs/pkgs/development/python-modules/cinemagoer/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

36 lines
858 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
lxml,
sqlalchemy,
}:
buildPythonPackage rec {
pname = "cinemagoer";
version = "2023.5.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-XOHXeuZUZwFhjxHlsVVqGdGO3srRttfZaXPsNJQbGPI=";
};
propagatedBuildInputs = [
lxml
sqlalchemy
];
# Tests require networking, and https://github.com/cinemagoer/cinemagoer/issues/240
doCheck = false;
pythonImportsCheck = [ "imdb" ]; # Former "imdbpy", upstream is yet to rename here
meta = with lib; {
description = "Python package for retrieving and managing the data of the IMDb movie database about movies and people";
downloadPage = "https://github.com/cinemagoer/cinemagoer/";
homepage = "https://cinemagoer.github.io/";
license = licenses.gpl2Only;
maintainers = [ ];
};
}