{ lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "puremagic"; version = "1.21"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "cdgriffith"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-ObJp3+gk1tf1+9wBpvzs0wwP7ptDlfGwX9b4wlCb1RI="; }; 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 ]; }; }