18 buildPythonPackage rec {
19 pname = "sqlite-utils";
21 format = "setuptools";
23 disabled = pythonOlder "3.7";
26 inherit pname version;
27 hash = "sha256-WQsUrSd5FMs/x9XiVHZIR/rNqqI8e6/YXsk4dPb0IUM=";
31 substituteInPlace setup.py \
32 --replace "click-default-group-wheel" "click-default-group"
35 propagatedBuildInputs = [
49 pythonImportsCheck = [
53 passthru.tests.version = testers.testVersion {
54 package = sqlite-utils;
58 description = "Python CLI utility and library for manipulating SQLite databases";
59 homepage = "https://github.com/simonw/sqlite-utils";
60 changelog = "https://github.com/simonw/sqlite-utils/releases/tag/${version}";
61 license = licenses.asl20;
62 maintainers = with maintainers; [ meatcar techknowlogick ];