python312Packages.apsw: 3.45.1.0 -> 3.45.2.0

https://github.com/rogerbinns/apsw/blob/3.45.2.0/doc/changes.rst
This commit is contained in:
Martin Weinelt 2024-03-24 10:57:58 +01:00
parent 885b5666f2
commit 35a12fc9b1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, sqlite
, isPyPy
, python
@ -8,8 +9,8 @@
buildPythonPackage rec {
pname = "apsw";
version = "3.45.1.0";
format = "setuptools";
version = "3.45.2.0";
pyproject = true;
disabled = isPyPy;
@ -17,9 +18,13 @@ buildPythonPackage rec {
owner = "rogerbinns";
repo = "apsw";
rev = "refs/tags/${version}";
hash = "sha256-NkpkciLR2TgfK/7UQHEzvQu8qRj4UJyOlGQbiV23qrc=";
hash = "sha256-tTi3/10W4OoGH6PQVhvPWc5o09on5BZrWoAvrfh4C/E=";
};
build-system = [
setuptools
];
buildInputs = [
sqlite
];
@ -36,6 +41,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/rogerbinns/apsw/blob/${src.rev}/doc/changes.rst";
description = "A Python wrapper for the SQLite embedded relational database engine";
homepage = "https://github.com/rogerbinns/apsw";
license = licenses.zlib;