Merge pull request #217364 from fabaff/wsgidav-bump

python310Packages.wsgidav: 4.1.0 -> 4.2.0
This commit is contained in:
Fabian Affolter 2023-02-22 00:27:33 +01:00 committed by GitHub
commit 46bb29c0ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 = [
@ -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 ];
};