lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.webdav4: 0.9.7 -> 0.9.8

+8 -4
+8 -4
pkgs/development/python-modules/webdav4/default.nix
··· 4 4 , colorama 5 5 , fetchFromGitHub 6 6 , fsspec 7 + , hatch-vcs 8 + , hatchling 7 9 , httpx 10 + , pytest-xdist 8 11 , pytestCheckHook 9 12 , python-dateutil 10 13 , pythonOlder 11 - , setuptools-scm 12 14 , wsgidav 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "webdav4"; 17 - version = "0.9.7"; 19 + version = "0.9.8"; 18 20 format = "pyproject"; 19 21 20 22 disabled = pythonOlder "3.9"; ··· 23 25 owner = "skshetry"; 24 26 repo = pname; 25 27 rev = "v${version}"; 26 - hash = "sha256-7v4dcwbTCGiEMkAQHtH9+zQj745dI0QqoEqdxRYRuO4="; 28 + hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk="; 27 29 }; 28 30 29 31 SETUPTOOLS_SCM_PRETEND_VERSION = version; 30 32 31 33 nativeBuildInputs = [ 32 - setuptools-scm 34 + hatch-vcs 35 + hatchling 33 36 ]; 34 37 35 38 propagatedBuildInputs = [ ··· 40 43 checkInputs = [ 41 44 cheroot 42 45 colorama 46 + pytest-xdist 43 47 pytestCheckHook 44 48 wsgidav 45 49 ] ++ passthru.optional-dependencies.fsspec;