Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jellyfin-apiclient-python / default.nix
blob4413f081a63551bcdc6390942585ad201d61c2e4
1 { lib
2 , buildPythonPackage
3 , certifi
4 , fetchPypi
5 , pythonOlder
6 , requests
7 , urllib3
8 , websocket-client
9 }:
11 buildPythonPackage rec {
12   pname = "jellyfin-apiclient-python";
13   version = "1.9.2";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-vMzZeoiWli3HjM8Dqr5RhNfR7gcjPqoXG3b/aNNlx2Q=";
21   };
23   propagatedBuildInputs = [
24     certifi
25     requests
26     urllib3
27     websocket-client
28   ];
30   # Module has no test
31   doCheck = false;
33   pythonImportsCheck = [
34     "jellyfin_apiclient_python"
35   ];
37   meta = with lib; {
38     description = "Python API client for Jellyfin";
39     homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
40     license = licenses.gpl3Only;
41     maintainers = with maintainers; [ jojosch ];
42   };