{ lib , buildPythonPackage , fetchPypi , fetchpatch , pythonOlder , click , click-default-group , python-dateutil , sqlite-fts4 , tabulate , pytestCheckHook , hypothesis }: buildPythonPackage rec { pname = "sqlite-utils"; version = "3.26"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-G2Fy9PEYtq0dIWhsgV4HZa5y+wLxcI3CYSgDL6ijkdo="; }; propagatedBuildInputs = [ click click-default-group python-dateutil sqlite-fts4 tabulate ]; checkInputs = [ pytestCheckHook hypothesis ]; pythonImportsCheck = [ "sqlite_utils" ]; meta = with lib; { description = "Python CLI utility and library for manipulating SQLite databases"; homepage = "https://github.com/simonw/sqlite-utils"; license = licenses.asl20; maintainers = with maintainers; [ meatcar ]; }; }