about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-03-29 08:01:23 +0200
committerGitHub <noreply@github.com>2023-03-29 08:01:23 +0200
commitfc67b4a1e4f736edaadde2f8d38697a8f09934a1 (patch)
tree1958c1e623046bf6cee8b158b46da81171a0cea1
parent2d1d6c3f40c91307c7463dd6bd1abd70d77ae06d (diff)
parentb18bad8c2cd0bb685ae3a86613736bb5b59f03ce (diff)
Merge pull request #223637 from fabaff/ytmusicapi-bump
python310Packages.ytmusicapi: 0.25.0 -> 0.25.1
-rw-r--r--pkgs/development/python-modules/ytmusicapi/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix
index a2adbeb87d291..5bc5ece21861b 100644
--- a/pkgs/development/python-modules/ytmusicapi/default.nix
+++ b/pkgs/development/python-modules/ytmusicapi/default.nix
@@ -9,14 +9,14 @@
 
 buildPythonPackage rec {
   pname = "ytmusicapi";
-  version = "0.25.0";
+  version = "0.25.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.8";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-hpX/qmRRwvCE0N5jIWl6AZkcYaVViK30nPbJwyZD+rM=";
+    hash = "sha256-uc/fgDetSYaCRzff0SzfbRhs3TaKrfE2h6roWkkj8yQ=";
   };
 
   nativeBuildInputs = [
@@ -37,6 +37,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python API for YouTube Music";
     homepage = "https://github.com/sigma67/ytmusicapi";
+    changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ dotlambda ];
   };