{ lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "puremagic"; version = "1.15"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "cdgriffith"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-WnqDrVPTlNxz3SDt1wLdZmxtj0Vh6gLHDJlYGEHHxsg="; }; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "puremagic" ]; meta = with lib; { description = "Implementation of magic file detection"; homepage = "https://github.com/cdgriffith/puremagic"; changelog = "https://github.com/cdgriffith/puremagic/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ globin ]; }; }