Loading pkgs/development/python-modules/librespot/default.nix 0 → 100644 +61 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , defusedxml , protobuf , pythonRelaxDepsHook , websocket-client , pyogg , zeroconf , requests , pycryptodomex , pytestCheckHook }: buildPythonPackage rec { pname = "librespot"; version = "0.0.9"; format = "setuptools"; src = fetchFromGitHub { owner = "kokarare1212"; repo = "librespot-python"; rev = "v${version}"; hash = "sha256-k9qVsxjRlUZ7vCBx00quiAR7S+YkfyoZiAKVnOOG4xM="; }; nativeBuildInputs = [ pythonRelaxDepsHook ]; propagatedBuildInputs = [ defusedxml protobuf pycryptodomex pyogg requests websocket-client zeroconf ]; pythonRelaxDeps = [ "protobuf" "pyogg" "requests" "zeroconf" ]; # Doesn't include any tests doCheck = false; pythonImportsCheck = [ "librespot" ]; meta = with lib; { description = "Open Source Spotify Client"; homepage = "https://github.com/kokarare1212/librespot-python"; license = licenses.asl20; maintainers = with maintainers; [ onny ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5860,6 +5860,8 @@ self: super: with self; { (p: p.py) ]; librespot = callPackage ../development/python-modules/librespot { }; libretranslate = callPackage ../development/python-modules/libretranslate { }; librosa = callPackage ../development/python-modules/librosa { }; Loading Loading
pkgs/development/python-modules/librespot/default.nix 0 → 100644 +61 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , defusedxml , protobuf , pythonRelaxDepsHook , websocket-client , pyogg , zeroconf , requests , pycryptodomex , pytestCheckHook }: buildPythonPackage rec { pname = "librespot"; version = "0.0.9"; format = "setuptools"; src = fetchFromGitHub { owner = "kokarare1212"; repo = "librespot-python"; rev = "v${version}"; hash = "sha256-k9qVsxjRlUZ7vCBx00quiAR7S+YkfyoZiAKVnOOG4xM="; }; nativeBuildInputs = [ pythonRelaxDepsHook ]; propagatedBuildInputs = [ defusedxml protobuf pycryptodomex pyogg requests websocket-client zeroconf ]; pythonRelaxDeps = [ "protobuf" "pyogg" "requests" "zeroconf" ]; # Doesn't include any tests doCheck = false; pythonImportsCheck = [ "librespot" ]; meta = with lib; { description = "Open Source Spotify Client"; homepage = "https://github.com/kokarare1212/librespot-python"; license = licenses.asl20; maintainers = with maintainers; [ onny ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5860,6 +5860,8 @@ self: super: with self; { (p: p.py) ]; librespot = callPackage ../development/python-modules/librespot { }; libretranslate = callPackage ../development/python-modules/libretranslate { }; librosa = callPackage ../development/python-modules/librosa { }; Loading