Skip to content

Commit

Permalink
Spotify-cli-linux: 1.9.0 -> 1.9.1
Browse files Browse the repository at this point in the history
Also changed fetchPypi to fetchFromGitHub
  • Loading branch information
mastermines1 committed Jan 9, 2025
1 parent d063f36 commit 7ce83b9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/by-name/sp/spotify-cli-linux/package.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ lib, python3Packages, fetchPypi, dbus }:
{ lib, python3Packages, fetchFromGitHub, dbus }:
python3Packages.buildPythonApplication rec {
pname = "spotify-cli-linux";
version = "1.9.0";
version = "1.9.1";
pyproject = true;

src = fetchPypi {
inherit pname version;
hash = "sha256-YW9HLcy50d44TRUEEkWAd92Gr2sTpRiu/w/bhF+LdBM=";
src = fetchFromGitHub {
owner = "pwittchen";
repo = "spotify-cli-linux";
rev = "v${version}";
hash = "sha256-Ko/as7wiBHawmyag9jFZqpPUZhb3p1+oYcl+26XyBZk=";
};

preBuild = ''
Expand Down

0 comments on commit 7ce83b9

Please sign in to comment.