python3Packages.platformdirs: 2.4.0 -> 2.4.1

authored by Fabian Affolter and committed by Jonathan Ringer 36839cd8 65a31319

+8 -4
+8 -4
pkgs/development/python-modules/platformdirs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "platformdirs"; 14 - version = "2.4.0"; 15 - disabled = pythonOlder "3.6"; 14 + version = "2.4.1"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 16 18 17 19 src = fetchFromGitHub { 18 20 owner = pname; 19 21 repo = pname; 20 22 rev = version; 21 - sha256 = "sha256-Ox1CVq2M2eddZtpuZx0IfvuOm6RPsAs27WkMdZSeh0E="; 23 + sha256 = "sha256-Ce1dwE2g/7o91NPkmlM0uv0eMB7WzFCExV/8ZCAn22Y="; 22 24 }; 23 25 24 26 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 33 35 pytestCheckHook 34 36 ]; 35 37 36 - pythonImportsCheck = [ "platformdirs" ]; 38 + pythonImportsCheck = [ 39 + "platformdirs" 40 + ]; 37 41 38 42 meta = with lib; { 39 43 description = "Python module for determining appropriate platform-specific directories";