Merge pull request #230497 from fabaff/filelock-bump

python310Packages.filelock: 3.9.0 -> 3.12.0

authored by Mario Rodas and committed by GitHub f0dedc6e 5f21cb9c

+4 -2
+4 -2
pkgs/development/python-modules/filelock/default.nix
··· 3 , fetchPypi 4 , hatch-vcs 5 , hatchling 6 , pytestCheckHook 7 , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "filelock"; 12 - version = "3.9.0"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-ezGfJDQLUfVaK/ehKsB1WpsD5xgxHaxWeg9Pf6vS9d4="; 20 }; 21 22 nativeBuildInputs = [ ··· 25 ]; 26 27 nativeCheckInputs = [ 28 pytestCheckHook 29 ]; 30
··· 3 , fetchPypi 4 , hatch-vcs 5 , hatchling 6 + , pytest-mock 7 , pytestCheckHook 8 , pythonOlder 9 }: 10 11 buildPythonPackage rec { 12 pname = "filelock"; 13 + version = "3.12.0"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-/AOuQyiMAT0uqDyFlwAbESnbNRqtnFf+JAkyeRa45xg="; 21 }; 22 23 nativeBuildInputs = [ ··· 26 ]; 27 28 nativeCheckInputs = [ 29 + pytest-mock 30 pytestCheckHook 31 ]; 32