pythonPackages.jellyfin-apiclient-python: init at 1.4.0
This commit is contained in:
parent
57f93c1df8
commit
fc51ceec8a
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, requests
|
||||||
|
, websocket_client, pythonOlder }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "jellyfin-apiclient-python";
|
||||||
|
version = "1.4.0";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "iwalton3";
|
||||||
|
repo = "jellyfin-apiclient-python";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0b4ij19xjwn0wm5076fx8n4phjbsfx84x9qdrwm8c2r3ld8w7hk4";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests websocket_client ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "jellyfin_apiclient_python" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/iwalton3/jellyfin-apiclient-python";
|
||||||
|
description = "Python API client for Jellyfin";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ jojosch ];
|
||||||
|
};
|
||||||
|
}
|
@ -812,6 +812,8 @@ in {
|
|||||||
|
|
||||||
jc = callPackage ../development/python-modules/jc { };
|
jc = callPackage ../development/python-modules/jc { };
|
||||||
|
|
||||||
|
jellyfin-apiclient-python = callPackage ../development/python-modules/jellyfin-apiclient-python { };
|
||||||
|
|
||||||
jira = callPackage ../development/python-modules/jira { };
|
jira = callPackage ../development/python-modules/jira { };
|
||||||
|
|
||||||
jsonpath = callPackage ../development/python-modules/jsonpath { };
|
jsonpath = callPackage ../development/python-modules/jsonpath { };
|
||||||
|
Loading…
Reference in New Issue
Block a user