diff options
Diffstat (limited to 'pkgs/development/python-modules/librespot/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/librespot/default.nix | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/librespot/default.nix b/pkgs/development/python-modules/librespot/default.nix index 97277f68a981..7e6d2edb253b 100644 --- a/pkgs/development/python-modules/librespot/default.nix +++ b/pkgs/development/python-modules/librespot/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, defusedxml -, fetchFromGitHub -, protobuf -, pycryptodomex -, pyogg -, pytestCheckHook -, pythonRelaxDepsHook -, requests -, websocket-client -, zeroconf +{ + lib, + buildPythonPackage, + defusedxml, + fetchFromGitHub, + protobuf, + pycryptodomex, + pyogg, + pytestCheckHook, + pythonRelaxDepsHook, + requests, + websocket-client, + zeroconf, }: buildPythonPackage rec { @@ -26,9 +27,7 @@ buildPythonPackage rec { pythonRelaxDeps = true; - nativeBuildInputs = [ - pythonRelaxDepsHook - ]; + nativeBuildInputs = [ pythonRelaxDepsHook ]; propagatedBuildInputs = [ defusedxml @@ -43,9 +42,7 @@ buildPythonPackage rec { # Doesn't include any tests doCheck = false; - pythonImportsCheck = [ - "librespot" - ]; + pythonImportsCheck = [ "librespot" ]; meta = with lib; { description = "Open Source Spotify Client"; |
