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