python3Packages.plexapi: 4.6.1 -> 4.7.0

This commit is contained in:
Fabian Affolter 2021-07-31 22:56:43 +02:00
parent ca5d520a0f
commit ab21b70413

View file

@ -4,19 +4,19 @@
, requests , requests
, tqdm , tqdm
, websocket-client , websocket-client
, isPy27 , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "PlexAPI"; pname = "plexapi";
version = "4.6.1"; version = "4.7.0";
disabled = isPy27; disabled = pythonOlder "3.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pkkid"; owner = "pkkid";
repo = "python-plexapi"; repo = "python-plexapi";
rev = version; rev = version;
sha256 = "sha256-WL5UBsvAdtfOCkVX9NI0Z2fJ2CAO+NwD8wvkvkJ2uww="; sha256 = "1gh36ln9ki69rs7ml9syqq956i996rdi145qffjwb3736zylrzkp";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -27,6 +27,7 @@ buildPythonPackage rec {
# Tests require a running Plex instance # Tests require a running Plex instance
doCheck = false; doCheck = false;
pythonImportsCheck = [ "plexapi" ]; pythonImportsCheck = [ "plexapi" ];
meta = with lib; { meta = with lib; {