python3Packages.platformdirs: 4.3.8 -> 4.5.0 (#452330)

This commit is contained in:
dotlambda
2025-10-16 20:15:59 +00:00
committed by GitHub
@@ -12,16 +12,14 @@
buildPythonPackage rec {
pname = "platformdirs";
version = "4.3.8";
version = "4.5.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "platformdirs";
owner = "tox-dev";
repo = "platformdirs";
tag = version;
hash = "sha256-ePaEpsBkTomRX+RJsed8aJtefl5WCW/N9IT8ae4+ln4=";
hash = "sha256-ESXp9I6SL13BdsQLCUcfS8kwqayURCEguhINnK6Dd6k=";
};
build-system = [
@@ -37,11 +35,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "platformdirs" ];
meta = with lib; {
meta = {
description = "Module for determining appropriate platform-specific directories";
homepage = "https://platformdirs.readthedocs.io/";
changelog = "https://github.com/platformdirs/platformdirs/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
changelog = "https://github.com/tox-dev/platformdirs/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}