3
0
Fork 0
forked from mirrors/nixpkgs

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