{ lib , buildPythonPackage , fetchFromGitHub , poetry-core , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "validators"; version = "0.21.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "python-validators"; repo = "validators"; rev = "refs/tags/${version}"; hash = "sha256-b5K1WP+cEAjPBXu9sAZQf1J5H7PLnn94400Zd/0Y9ew="; }; nativeBuildInputs = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "validators" ]; meta = with lib; { description = "Python Data Validation for Humans"; homepage = "https://github.com/python-validators/validators"; changelog = "https://github.com/python-validators/validators/blob/${version}/CHANGES.md"; license = licenses.mit; maintainers = [ ]; }; }