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 = [
|
pythonRelaxDeps = [
|
||||||
"django-allauth"
|
"django-allauth"
|
||||||
|
"pathvalidate"
|
||||||
"redis"
|
"redis"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user