about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-25 09:42:42 -0500
committerGitHub <noreply@github.com>2023-11-25 09:42:42 -0500
commit6eb9a67923ce5a01f3a158b0fd040bd7b23fb0e4 (patch)
treece3333bd422d84d4296222d6bdcbb33f37ec9361 /pkgs
parentb99ce3332596476529ca44e8212c776003d85e46 (diff)
parent9814de5032ed4bb09f6fe0c2468013cc7a1d94a1 (diff)
Merge pull request #269822 from fabaff/pdunehd-bump
python311Packages.pdunehd: 1.3.2 -> 1.3.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pdunehd/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pdunehd/default.nix b/pkgs/development/python-modules/pdunehd/default.nix
index 63eca0dab8253..e3ae53ecb85ec 100644
--- a/pkgs/development/python-modules/pdunehd/default.nix
+++ b/pkgs/development/python-modules/pdunehd/default.nix
@@ -7,15 +7,15 @@
 
 buildPythonPackage rec {
   pname = "pdunehd";
-  version = "1.3.2";
+  version = "1.3.3";
 
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "valentinalexeev";
     repo = "pdunehd";
-    rev = version;
-    sha256 = "06p0k82nf89rsakr8d2hdb19dp1wqp9bsf54lwb0qma47iakljjh";
+    rev = "refs/tags/${version}";
+    sha256 = "sha256-8CL7ZQ+tV0CKdqWWiPDbo6Q5d1iIj/vNbYshdjUpYSw=";
   };
 
   propagatedBuildInputs = [
@@ -30,6 +30,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python wrapper for Dune HD media player API";
     homepage = "https://github.com/valentinalexeev/pdunehd";
+    changelog = "https://github.com/valentinalexeev/pdunehd/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ dotlambda ];
   };