pythonPackages.sqlite-utils: init at 2.22

This commit is contained in:
Denys Pavlov
2020-10-01 19:20:04 -04:00
parent 59c4870a96
commit ff3dca56ed
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, click
, click-default-group
, tabulate
, pytestCheckHook
, pytestrunner
, black
}:
buildPythonPackage rec {
pname = "sqlite-utils";
version = "2.22";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0g8zzp4qw6miijirykjcd78ib027k7dmg6lb9m4xysvah5jh8vfv";
};
propagatedBuildInputs = [
click
click-default-group
tabulate
];
checkInputs = [
pytestCheckHook
pytestrunner
black
];
meta = with lib; {
description = "Python CLI utility and library for manipulating SQLite databases";
homepage = "https://github.com/simonw/sqlite-utils";
license = licenses.asl20;
maintainers = [ maintainers.meatcar ];
};
}