1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/development/python-modules/plexapi/default.nix

41 lines
770 B
Nix
Raw Normal View History

2021-02-08 09:42:35 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, tqdm
, websocket-client
, pythonOlder
2021-02-08 09:42:35 +00:00
}:
2020-01-21 02:30:48 +00:00
buildPythonPackage rec {
pname = "plexapi";
version = "4.7.2";
disabled = pythonOlder "3.6";
2020-01-21 02:30:48 +00:00
src = fetchFromGitHub {
owner = "pkkid";
repo = "python-plexapi";
rev = version;
sha256 = "sha256-v12CL2VR9QAoj44F8V1qw/qflzQ1WRi1cvWn/U/wW/E=";
2020-01-21 02:30:48 +00:00
};
2021-02-08 09:42:35 +00:00
propagatedBuildInputs = [
requests
tqdm
websocket-client
2021-02-08 09:42:35 +00:00
];
2020-01-21 02:30:48 +00:00
2021-02-08 09:42:35 +00:00
# Tests require a running Plex instance
doCheck = false;
2021-02-08 09:42:35 +00:00
pythonImportsCheck = [ "plexapi" ];
2020-01-21 02:30:48 +00:00
meta = with lib; {
description = "Python bindings for the Plex API";
2021-02-08 09:42:35 +00:00
homepage = "https://github.com/pkkid/python-plexapi";
2020-01-21 02:30:48 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ colemickens ];
};
}