python3Packages.pathvalidate: 3.2.3 -> 3.3.1 (#422984)

This commit is contained in:
Sandro 2025-08-19 00:24:55 +02:00 committed by GitHub
commit ec033977f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 6 deletions

View File

@ -160,6 +160,7 @@ python.pkgs.buildPythonApplication rec {
pythonRelaxDeps = [
"django-allauth"
"pathvalidate"
"redis"
];

View File

@ -25,6 +25,7 @@
tenacity,
textx,
toml,
tzdata,
wrapt,
wurlitzer,
xdg-base-dirs,
@ -67,6 +68,7 @@ buildPythonPackage rec {
tenacity
textx
toml
tzdata
wrapt
wurlitzer
xdg-base-dirs
@ -108,6 +110,7 @@ buildPythonPackage rec {
changelog = "https://github.com/RhetTbull/osxphotos/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
broken = stdenv.hostPlatform.isDarwin;
# missing utitools dependency
broken = true && stdenv.hostPlatform.isDarwin;
};
}

View File

@ -2,20 +2,17 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pathvalidate";
version = "3.2.3";
version = "3.3.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-WbW5J44wOC1tITSXYjBD6+Y/EOKQVb5EGanATHIXOcs=";
hash = "sha256-sYwHISv+rWJDRbuOHWFBzc8Vo5c2mU6guUA1rSsboXc=";
};
build-system = [ setuptools-scm ];