summary refs log tree commit diff
path: root/pkgs/development/python-modules/bsddb3
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2015-12-09 10:02:36 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2015-12-11 10:41:37 +0100
commitfa45088ae9f42fcdd52d24210050a0d5e2a61cc5 (patch)
tree4f4ce4139955edcd46a40968a158c1d1c4f9e093 /pkgs/development/python-modules/bsddb3
parent66f663e192d90c42c6cef01cfd3d5e1e1c111343 (diff)
downloadnixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar.gz
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar.bz2
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar.lz
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar.xz
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.tar.zst
nixpkgs-fa45088ae9f42fcdd52d24210050a0d5e2a61cc5.zip
python bsddb3: move and update expression
The updated expression uses buildPythonPackage and thus installs a
wheel. Unfortunately, setting the --berkeley-db flag seems to fail.
Diffstat (limited to 'pkgs/development/python-modules/bsddb3')
-rw-r--r--pkgs/development/python-modules/bsddb3/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/bsddb3/default.nix b/pkgs/development/python-modules/bsddb3/default.nix
deleted file mode 100644
index bd5b953f048..00000000000
--- a/pkgs/development/python-modules/bsddb3/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{stdenv, fetchurl, python, db}:
-
-stdenv.mkDerivation rec {
-  name = "bsddb3-6.1.0";
-  src = fetchurl {
-    url = "https://pypi.python.org/packages/source/b/bsddb3/${name}.tar.gz";
-    sha256 = "05gx3rfgq1qrgdmpd6hri6y5l97bh1wczvb6x853jchwi7in6cdi";
-  };
-  buildInputs = [python];
-  buildPhase = "true";
-  installPhase = "python ./setup.py install --prefix=$out --berkeley-db=${db}";
-}