{ lib , buildPythonPackage , cffi , fetchPypi , zope_interface , sphinx , manuel , pythonOlder }: buildPythonPackage rec { pname = "persistent"; version = "4.9.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-8j6yXqRbvKa/YgSwKKCn6qFz0ngdaP9XzVhhzBoNDtA="; }; nativeBuildInputs = [ sphinx manuel ]; propagatedBuildInputs = [ zope_interface cffi ]; pythonImportsCheck = [ "persistent" ]; meta = with lib; { description = "Automatic persistence for Python objects"; homepage = "https://github.com/zopefoundation/persistent/"; license = licenses.zpl21; maintainers = with maintainers; [ ]; }; }