2020-11-06 00:33:48 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-12-26 17:43:05 +00:00
|
|
|
, fetchpatch
|
2020-12-25 13:55:36 +00:00
|
|
|
, pythonOlder
|
2020-11-06 00:33:48 +00:00
|
|
|
, click
|
|
|
|
, click-default-group
|
2022-01-26 04:04:25 +00:00
|
|
|
, python-dateutil
|
2020-12-25 13:55:36 +00:00
|
|
|
, sqlite-fts4
|
2020-11-06 00:33:48 +00:00
|
|
|
, tabulate
|
|
|
|
, pytestCheckHook
|
2020-12-25 13:55:36 +00:00
|
|
|
, hypothesis
|
2020-11-06 00:33:48 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sqlite-utils";
|
2022-02-10 20:34:41 +00:00
|
|
|
version = "3.23";
|
2020-12-25 13:55:36 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-10 20:34:41 +00:00
|
|
|
sha256 = "sha256-BNlOP/gWDERh4Rzth5zjeghHr7ozyAGeRJxoeE6baWY=";
|
2020-11-06 00:33:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
click-default-group
|
2022-01-26 04:04:25 +00:00
|
|
|
python-dateutil
|
2020-12-25 13:55:36 +00:00
|
|
|
sqlite-fts4
|
2020-11-06 00:33:48 +00:00
|
|
|
tabulate
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
2020-12-25 13:55:36 +00:00
|
|
|
hypothesis
|
|
|
|
];
|
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python CLI utility and library for manipulating SQLite databases";
|
|
|
|
homepage = "https://github.com/simonw/sqlite-utils";
|
|
|
|
license = licenses.asl20;
|
2020-12-25 13:55:36 +00:00
|
|
|
maintainers = with maintainers; [ meatcar ];
|
2020-11-06 00:33:48 +00:00
|
|
|
};
|
|
|
|
}
|