forked from mirrors/nixpkgs
36 lines
742 B
Nix
36 lines
742 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, requests
|
|
, six
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jellyfin-apiclient-python";
|
|
version = "1.8.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a47d66166d1e9d3f0b38260004081bfd3fd9c07ca1b50181bbb980c4d7aeee34";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
six
|
|
websocket-client
|
|
];
|
|
|
|
doCheck = false; # no tests
|
|
pythonImportsCheck = [ "jellyfin_apiclient_python" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
|
|
description = "Python API client for Jellyfin";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|