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