{ lib , buildPythonPackage , editdistance-s , fetchFromGitHub , pytestCheckHook , pythonOlder , ukkonen }: buildPythonPackage rec { pname = "identify"; version = "2.5.28"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pre-commit"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-pGSXXsA+gIIIZbnwa22EmizZT65MqZrWd3+o47VatBs="; }; nativeCheckInputs = [ editdistance-s pytestCheckHook ukkonen ]; pythonImportsCheck = [ "identify" ]; meta = with lib; { description = "File identification library for Python"; homepage = "https://github.com/chriskuehl/identify"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }