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