about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asyncua
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-28 09:19:11 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-03-28 09:19:11 +0200
commit4e6d3feb566667b6d8df6ab5bfbf7ca91da19dbb (patch)
treedfb17ad26192f29e12e119d34c54703e70973f2e /pkgs/development/python-modules/asyncua
parent1b63409492f3c4a70f6eed34aaaab9417035dca7 (diff)
python310Packages.asyncua: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/asyncua')
-rw-r--r--pkgs/development/python-modules/asyncua/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/asyncua/default.nix b/pkgs/development/python-modules/asyncua/default.nix
index 8faa98cfda065..028b60e7adb3f 100644
--- a/pkgs/development/python-modules/asyncua/default.nix
+++ b/pkgs/development/python-modules/asyncua/default.nix
@@ -26,7 +26,7 @@ buildPythonPackage rec {
   src = fetchFromGitHub {
     owner = "FreeOpcUa";
     repo = "opcua-asyncio";
-    rev = "v${version}";
+    rev = "refs/tags/v${version}";
     hash = "sha256-6A4z+tiQ2oUlB9t44wlW64j5sjWFMAgqT3Xt0FdJCBs=";
   };
 
@@ -60,6 +60,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "OPC UA / IEC 62541 Client and Server for Python";
     homepage = "https://github.com/FreeOpcUa/opcua-asyncio";
+    changelog = "https://github.com/FreeOpcUa/opcua-asyncio/releases/tag/v${version}";
     license = licenses.lgpl3Plus;
     maintainers = with maintainers; [ harvidsen ];
   };