0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python.pkgs.apsw: 3.7.6.2-r1 -> 3.9.2-r1

This commit is contained in:
Frederik Rietdijk 2018-02-26 19:18:12 +01:00
parent 55ef50c257
commit 7d7c60b273

View file

@ -1,22 +1,21 @@
{ stdenv, buildPythonPackage, fetchurl { stdenv, buildPythonPackage, fetchPypi
, sqlite, isPyPy }: , sqlite, isPyPy }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "apsw"; pname = "apsw";
version = "3.7.6.2-r1"; version = "3.9.2-r1";
name = "${pname}-${version}";
disabled = isPyPy; disabled = isPyPy;
src = fetchurl { src = fetchPypi {
url = "http://apsw.googlecode.com/files/${name}.zip"; inherit pname version;
sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; sha256 = "dab96fd164dde9e59f7f27228291498217fa0e74048e2c08c7059d7e39589270";
}; };
buildInputs = [ sqlite ]; buildInputs = [ sqlite ];
# python: double free or corruption (fasttop): 0x0000000002fd4660 *** # python: double free or corruption (fasttop): 0x0000000002fd4660 ***
doCheck = false; # doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A Python wrapper for the SQLite embedded relational database engine"; description = "A Python wrapper for the SQLite embedded relational database engine";