diff --git a/pkgs/by-name/sp/spotify-cli-linux/package.nix b/pkgs/by-name/sp/spotify-cli-linux/package.nix index 944fa4dd3ee0..9697bd5f6577 100644 --- a/pkgs/by-name/sp/spotify-cli-linux/package.nix +++ b/pkgs/by-name/sp/spotify-cli-linux/package.nix @@ -1,20 +1,22 @@ { lib, python3Packages, fetchPypi, dbus }: python3Packages.buildPythonApplication rec { pname = "spotify-cli-linux"; - version = "1.8.2"; + version = "1.9.0"; + pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-XJMkiQR1FoeIPfAuJT22kfYJdc/ABuxExELh0EEev8k="; + hash = "sha256-YW9HLcy50d44TRUEEkWAd92Gr2sTpRiu/w/bhF+LdBM="; }; preBuild = '' substituteInPlace spotifycli/spotifycli.py \ - --replace dbus-send ${dbus}/bin/dbus-send + --replace-fail dbus-send ${dbus}/bin/dbus-send ''; disabled = !python3Packages.isPy3k; - propagatedBuildInputs = with python3Packages; [ lyricwikia dbus-python ]; + build-system = with python3Packages; [ setuptools ]; + propagatedBuildInputs = with python3Packages; [ lyricwikia jeepney ]; # upstream has no code tests, but uses its "tests" for linting and formatting checks doCheck = false;