Unverified Commit 46bb29c0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #217364 from fabaff/wsgidav-bump

python310Packages.wsgidav: 4.1.0 -> 4.2.0 
parents 6be47d17 ccf62f5f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 ];
  };