1{ stdenv, buildPythonPackage, fetchurl
2, sqlite, isPyPy }:
3
4buildPythonPackage rec {
5 pname = "apsw";
6 version = "3.7.6.2-r1";
7 name = "${pname}-${version}";
8
9 disabled = isPyPy;
10
11 src = fetchurl {
12 url = "http://apsw.googlecode.com/files/${name}.zip";
13 sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb";
14 };
15
16 buildInputs = [ sqlite ];
17
18 # python: double free or corruption (fasttop): 0x0000000002fd4660 ***
19 doCheck = false;
20
21 meta = with stdenv.lib; {
22 description = "A Python wrapper for the SQLite embedded relational database engine";
23 homepage = http://code.google.com/p/apsw/;
24 };
25}