summary refs log tree commit diff
path: root/pkgs/development/python-modules/apsw/default.nix
blob: c16fb3c4c46b6cfc4ec5048f8f1eeb08e6677375 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildPythonPackage, fetchPypi
, sqlite, isPyPy }:

buildPythonPackage rec {
  pname = "apsw";
  version = "3.9.2-r1";

  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "dab96fd164dde9e59f7f27228291498217fa0e74048e2c08c7059d7e39589270";
  };

  buildInputs = [ sqlite ];

  # python: double free or corruption (fasttop): 0x0000000002fd4660 ***
#   doCheck = false;

  meta = with stdenv.lib; {
    description = "A Python wrapper for the SQLite embedded relational database engine";
    homepage = http://code.google.com/p/apsw/;
  };
}