summary refs log tree commit diff
path: root/pkgs/development/python-modules/bsddb3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bsddb3/default.nix')
-rw-r--r--pkgs/development/python-modules/bsddb3/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/bsddb3/default.nix b/pkgs/development/python-modules/bsddb3/default.nix
new file mode 100644
index 000000000000..6ba7f9f8d024
--- /dev/null
+++ b/pkgs/development/python-modules/bsddb3/default.nix
@@ -0,0 +1,12 @@
+{stdenv, fetchurl, python, db4}:
+
+stdenv.mkDerivation {
+  name = "bsddb3-4.5.0";
+  src = fetchurl {
+    url = mirror://sourceforge/pybsddb/bsddb3-4.5.0.tar.gz;
+    sha256 = "1h09kij32iikr9racp5p7qrb4li2gf2hs0lyq6d312qarja4d45v";
+  };
+  buildInputs = [python];
+  buildPhase = "true";
+  installPhase = "python ./setup.py install --prefix=$out --berkeley-db=${db4}";
+}