summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-05-29 03:00:52 +0200
committerGitHub <noreply@github.com>2021-05-29 03:00:52 +0200
commit7328b365b579149aa787f0eb01980e77c8ebb4f7 (patch)
tree7fb7922e420c9a2652eff8d92349b09c6bdb991e /pkgs/tools/audio
parentd3bc4f9f9a03e9134a35c8274ea9faefc1de93c3 (diff)
parent7683afc895f2e27b76ce73954b75b573cf2dbb3c (diff)
downloadnixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar.gz
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar.bz2
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar.lz
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar.xz
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.tar.zst
nixpkgs-7328b365b579149aa787f0eb01980e77c8ebb4f7.zip
Merge pull request #124381 from dotlambda/spotdl-3.6.0
spotdl: 3.5.2 -> 3.6.1
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/spotdl/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/audio/spotdl/default.nix b/pkgs/tools/audio/spotdl/default.nix
index 9306c516af5..38f69b4d2b7 100644
--- a/pkgs/tools/audio/spotdl/default.nix
+++ b/pkgs/tools/audio/spotdl/default.nix
@@ -6,13 +6,13 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "spotdl";
-  version = "3.5.2";
+  version = "3.6.1";
 
   src = fetchFromGitHub {
     owner = "spotDL";
     repo = "spotify-downloader";
     rev = "v${version}";
-    sha256 = "sha256-V9jIA+ULjZRj+uVy4Yh55PapPiqFy9I9ZVln1nt/bJw=";
+    sha256 = "sha256-F3bP8f1LtcFZL7qahYkCUvhtc27fcL8WBnmyLcS9lCY=";
   };
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -25,6 +25,7 @@ python3.pkgs.buildPythonApplication rec {
     tqdm
     beautifulsoup4
     requests
+    unidecode
   ];
 
   checkInputs = with python3.pkgs; [