python3Packages.portalocker: 3.1.1 -> 3.2.0

https://github.com/wolph/portalocker/releases/tag/v3.2.0

This commit was automatically generated using update-python-libraries.

Changed files
+6 -2
pkgs
development
python-modules
portalocker
+6 -2
pkgs/development/python-modules/portalocker/default.nix
···
# tests
pygments,
pytest-cov-stub,
+
pytest-rerunfailures,
+
pytest-timeout,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "portalocker";
-
version = "3.1.1";
+
version = "3.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-7CD23aKtnOifo5ml8x9PFJX1FZWPDLfKZUPO97tadJ4=";
+
hash = "sha256-HzAClWpUqMNzBYbFx3vxj65BSeB+rxwp/D+vTVo/iaw=";
};
nativeBuildInputs = [
···
nativeCheckInputs = [
pygments
pytest-cov-stub
+
pytest-rerunfailures
+
pytest-timeout
pytestCheckHook
];