diff options
| author | wisut hantanong <wizzup@gmail.com> | 2017-07-28 14:05:23 +0700 |
|---|---|---|
| committer | wisut hantanong <wizzup@gmail.com> | 2017-07-28 16:07:32 +0700 |
| commit | 6d09e0c9bea3944e9c7dfa4601d2454886afb257 (patch) | |
| tree | cf49efae85fabe8750a0adab29bc07587b48aca1 /pkgs/development/python-modules/apsw | |
| parent | python.pkgs.apipkg: move to separate expression (diff) | |
| download | nixpkgs-6d09e0c9bea3944e9c7dfa4601d2454886afb257.tar.gz | |
python.pkgs.apsw: move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/apsw')
| -rw-r--r-- | pkgs/development/python-modules/apsw/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/apsw/default.nix b/pkgs/development/python-modules/apsw/default.nix new file mode 100644 index 000000000000..3e7e970da6c0 --- /dev/null +++ b/pkgs/development/python-modules/apsw/default.nix @@ -0,0 +1,25 @@ +{ stdenv, buildPythonPackage, fetchurl +, sqlite, isPyPy }: + +buildPythonPackage rec { + pname = "apsw"; + version = "3.7.6.2-r1"; + name = "${pname}-${version}"; + + disabled = isPyPy; + + src = fetchurl { + url = "http://apsw.googlecode.com/files/${name}.zip"; + sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; + }; + + 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/; + }; +} |
