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 = [ pythonRelaxDeps = [
"django-allauth" "django-allauth"
"pathvalidate"
"redis" "redis"
]; ];

View File

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

View File

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