10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "python-plexapi";
20 rev = "refs/tags/${version}";
21 hash = "sha256-VU1HVAxAOraTd4VQIqG/MLkw77xciCICIh1zbzGn/dQ=";
24 propagatedBuildInputs = [
30 # Tests require a running Plex instance
33 pythonImportsCheck = [
38 description = "Python bindings for the Plex API";
39 homepage = "https://github.com/pkkid/python-plexapi";
40 changelog = "https://github.com/pkkid/python-plexapi/releases/tag/${version}";
41 license = licenses.bsd3;
42 maintainers = with maintainers; [ colemickens ];