mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
python38Packages.plexapi: 3.6.0 -> 4.1.2
This commit is contained in:
parent
b0a8a175e5
commit
d6d22a8361
@ -1,21 +1,21 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, requests
|
{ lib, buildPythonPackage, fetchFromGitHub, requests
|
||||||
, tqdm, websocket_client, pytest, pillow, mock, isPy27 }:
|
, tqdm, websocket_client, pytest, pillow, isPy27 }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "PlexAPI";
|
pname = "PlexAPI";
|
||||||
version = "3.6.0";
|
version = "4.1.2";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pkkid";
|
owner = "pkkid";
|
||||||
repo = "python-plexapi";
|
repo = "python-plexapi";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1lzp3367hmcpqwbkp4ckdv6hv37knwnwya88jicwl1smznpmjdfv";
|
sha256 = "1l955q1q6lljq3bmyiayr33gzxrlw16xdwgjdaflznvyg16fcjkk";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests tqdm websocket_client ];
|
propagatedBuildInputs = [ requests tqdm websocket_client ];
|
||||||
|
|
||||||
checkInputs = [ pytest pillow ]
|
checkInputs = [ pytest pillow ];
|
||||||
++ lib.optionals isPy27 [ mock ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/pkkid/python-plexapi";
|
homepage = "https://github.com/pkkid/python-plexapi";
|
||||||
|
Loading…
Reference in New Issue
Block a user