python3Packages.platformdirs: 2.5.1 -> 2.5.2

This commit is contained in:
Phillip Cloud 2022-04-23 05:41:09 -04:00
parent bbe9795596
commit e63edadf36
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -2,17 +2,17 @@
, appdirs , appdirs
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, platformdirs
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools-scm , hatchling
, hatch-vcs
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "platformdirs"; pname = "platformdirs";
version = "2.5.1"; version = "2.5.2";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,13 +20,14 @@ buildPythonPackage rec {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-z6WIwTWLlc/chNRxt3dqqa/IxYj1BBTcQ6OcfliHrvA="; sha256 = "sha256-c7gGgqOUVYA6wYU4+nQsYYw4Gn+DpMoIq2nP8nEdPcg=";
}; };
SETUPTOOLS_SCM_PRETEND_VERSION = version; SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [ nativeBuildInputs = [
setuptools-scm hatchling
hatch-vcs
]; ];
checkInputs = [ checkInputs = [