From 4ebee8a9665f964c6484cdbbd6cc5f1593c0618f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 22:17:57 +0100 Subject: [PATCH 1/2] python310Packages.wsgidav: add changelog to meta --- pkgs/development/python-modules/wsgidav/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/wsgidav/default.nix b/pkgs/development/python-modules/wsgidav/default.nix index b54a351b47de..9ed05e9fdca3 100644 --- a/pkgs/development/python-modules/wsgidav/default.nix +++ b/pkgs/development/python-modules/wsgidav/default.nix @@ -54,6 +54,7 @@ buildPythonPackage rec { meta = with lib; { description = "Generic and extendable WebDAV server based on WSGI"; homepage = "https://wsgidav.readthedocs.io/"; + changelog = "https://github.com/mar10/wsgidav/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From ccf62f5fc6b87ddb0da87511c25f214e60166de0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 22:19:55 +0100 Subject: [PATCH 2/2] python310Packages.wsgidav: 4.1.0 -> 4.2.0 Diff: https://github.com/mar10/wsgidav/compare/refs/tags/v4.1.0...v4.2.0 Changelog: https://github.com/mar10/wsgidav/blob/v4.2.0/CHANGELOG.md --- pkgs/development/python-modules/wsgidav/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/wsgidav/default.nix b/pkgs/development/python-modules/wsgidav/default.nix index 9ed05e9fdca3..f1b81599c396 100644 --- a/pkgs/development/python-modules/wsgidav/default.nix +++ b/pkgs/development/python-modules/wsgidav/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "wsgidav"; - version = "4.1.0"; + version = "4.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,8 +24,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "mar10"; repo = pname; - rev = "v${version}"; - hash = "sha256-iNyXY0txKX4X1+O27T7my8dfs8wqXoG7Kuo9yN9SRnY="; + rev = "refs/tags/v${version}"; + hash = "sha256-1S3Zi92YRcu/PKNWJIn2ayr5Wbc+/+E7irFBQpMrKW8="; }; nativeBuildInputs = [