Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
858 B
Nix
37 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 = [ ];
|
|
};
|
|
}
|