forked from mirrors/nixpkgs
python3Packages.jellyfin-apiclient-python: add six dependency
This commit is contained in:
parent
600d787b9b
commit
6bf47f4452
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue