Merge pull request #168697 from r-ryantm/auto-update/python3.10-sqlite-utils

python310Packages.sqlite-utils: 3.25.1 -> 3.26
This commit is contained in:
Fabian Affolter 2022-04-15 18:56:36 +02:00 committed by GitHub
commit 2cfd944d96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,12 +14,14 @@
buildPythonPackage rec {
pname = "sqlite-utils";
version = "3.25.1";
version = "3.26";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-32lfUJoTbkflztLU/BDhbHbuOkW66OGpHLuiyAKFy8k=";
hash = "sha256-G2Fy9PEYtq0dIWhsgV4HZa5y+wLxcI3CYSgDL6ijkdo=";
};
propagatedBuildInputs = [
@ -35,6 +37,10 @@ buildPythonPackage rec {
hypothesis
];
pythonImportsCheck = [
"sqlite_utils"
];
meta = with lib; {
description = "Python CLI utility and library for manipulating SQLite databases";
homepage = "https://github.com/simonw/sqlite-utils";