{ lib, atpublic, buildPythonPackage, fetchPypi, hatchling, psutil, pytest-cov, pytestCheckHook, pythonOlder, sybil, }: buildPythonPackage rec { pname = "flufl-lock"; version = "8.1.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "flufl_lock"; inherit version; hash = "sha256-2IMCAFaSpj2YtgCAFY+vCJvl7K5pafcGQJ2oJ2/c58s="; }; build-system = [ hatchling ]; dependencies = [ atpublic psutil ]; nativeCheckInputs = [ pytestCheckHook pytest-cov sybil ]; # disable code coverage checks for all OS. Upstream does not enforce these # checks on Darwin, and code coverage cannot be improved downstream nor is it # relevant to the user. pytestFlagsArray = [ "--no-cov" ]; pythonImportsCheck = [ "flufl.lock" ]; pythonNamespaces = [ "flufl" ]; meta = with lib; { description = "NFS-safe file locking with timeouts for POSIX and Windows"; homepage = "https://flufllock.readthedocs.io/"; changelog = "https://gitlab.com/warsaw/flufl.lock/-/blob/${version}/docs/NEWS.rst"; license = licenses.asl20; maintainers = with maintainers; [ qyliss ]; }; }