Merge pull request #197978 from fabaff/webdav4-bump

python310Packages.webdav4: 0.9.7 -> 0.9.8
This commit is contained in:
Fabian Affolter 2022-10-28 09:36:11 +02:00 committed by GitHub
commit b5c4a37a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,17 +4,19 @@
, colorama
, fetchFromGitHub
, fsspec
, hatch-vcs
, hatchling
, httpx
, pytest-xdist
, pytestCheckHook
, python-dateutil
, pythonOlder
, setuptools-scm
, wsgidav
}:
buildPythonPackage rec {
pname = "webdav4";
version = "0.9.7";
version = "0.9.8";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -23,13 +25,14 @@ buildPythonPackage rec {
owner = "skshetry";
repo = pname;
rev = "v${version}";
hash = "sha256-7v4dcwbTCGiEMkAQHtH9+zQj745dI0QqoEqdxRYRuO4=";
hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
hatch-vcs
hatchling
];
propagatedBuildInputs = [
@ -40,6 +43,7 @@ buildPythonPackage rec {
checkInputs = [
cheroot
colorama
pytest-xdist
pytestCheckHook
wsgidav
] ++ passthru.optional-dependencies.fsspec;