Merge pull request #231414 from r-ryantm/auto-update/python310Packages.sqlite-utils

python310Packages.sqlite-utils: 3.30 -> 3.31
This commit is contained in:
Nick Cao 2023-05-13 17:55:08 +08:00 committed by GitHub
commit dfdce9c1d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "sqlite-utils";
version = "3.30";
version = "3.31";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MABcEtXxNEVln3kXZr62qZAMJfRCvqH5gPIdOLdfbjM=";
hash = "sha256-VJifPQntEh+d+Xgx0EFziuSHcdPKhQCJRvG8GIQQmoo=";
};
postPatch = ''
@ -49,6 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python CLI utility and library for manipulating SQLite databases";
homepage = "https://github.com/simonw/sqlite-utils";
changelog = "https://github.com/simonw/sqlite-utils/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ meatcar techknowlogick ];
};