python3Packages.pathvalidate: 3.2.3 -> 3.3.1 (#422984)
This commit is contained in:
commit
ec033977f0
@ -160,6 +160,7 @@ python.pkgs.buildPythonApplication rec {
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"django-allauth"
|
||||
"pathvalidate"
|
||||
"redis"
|
||||
];
|
||||
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
|
Loading…
x
Reference in New Issue
Block a user