nixpkgs/pkgs/development/python-modules/sqlite-utils/default.nix
Denys Pavlov b6eab73c2e python37Packages.sqlite-utils: 3.2 -> 3.3
Re-enable tests that were fixed in sqlite-utils v3.1.1.
2021-01-18 16:14:58 -05:00

48 lines
834 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, click
, click-default-group
, sqlite-fts4
, tabulate
, pytestCheckHook
, pytestrunner
, black
, hypothesis
, sqlite
}:
buildPythonPackage rec {
pname = "sqlite-utils";
version = "3.3";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1linla3za1gb3w0n0k6h3q8in62qhipizff259p14gzmyr95rjjv";
};
propagatedBuildInputs = [
click
click-default-group
sqlite-fts4
tabulate
];
checkInputs = [
pytestCheckHook
pytestrunner
black
hypothesis
];
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 ];
};
}