python3Packages.jellyfin-apiclient-python: add six dependency

This commit is contained in:
Drew Risinger 2021-06-16 12:09:27 -04:00
parent 600d787b9b
commit 6bf47f4452

View File

@ -1,5 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, requests { lib
, websocket-client, pythonOlder }: , buildPythonPackage
, pythonOlder
, fetchPypi
, requests
, six
, websocket-client
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jellyfin-apiclient-python"; pname = "jellyfin-apiclient-python";
@ -11,7 +17,11 @@ buildPythonPackage rec {
sha256 = "sha256-nSLUa9/jAT6XrHo77kV5HYBxPO/lhcWKqPfpES7ul9A="; sha256 = "sha256-nSLUa9/jAT6XrHo77kV5HYBxPO/lhcWKqPfpES7ul9A=";
}; };
propagatedBuildInputs = [ requests websocket-client ]; propagatedBuildInputs = [
requests
six
websocket-client
];
doCheck = false; # no tests doCheck = false; # no tests
pythonImportsCheck = [ "jellyfin_apiclient_python" ]; pythonImportsCheck = [ "jellyfin_apiclient_python" ];