2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
|
2017-07-28 00:05:23 -07:00
|
|
|
, sqlite, isPyPy }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "apsw";
|
2020-09-03 22:05:03 -07:00
|
|
|
version = "3.33.0-r1";
|
2017-07-28 00:05:23 -07:00
|
|
|
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
2018-04-13 00:43:57 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rogerbinns";
|
|
|
|
repo = "apsw";
|
|
|
|
rev = version;
|
2020-09-03 22:05:03 -07:00
|
|
|
sha256 = "05mxcw1382xx22285fnv92xblqby3adfrvvalaw4dc6rzsn6kcan";
|
2017-07-28 00:05:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sqlite ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-07-28 00:05:23 -07:00
|
|
|
description = "A Python wrapper for the SQLite embedded relational database engine";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/rogerbinns/apsw";
|
2018-04-13 00:43:57 -07:00
|
|
|
license = licenses.zlib;
|
2017-07-28 00:05:23 -07:00
|
|
|
};
|
|
|
|
}
|