Author: eelco
Date: Tue Jan 4 16:10:28 2011
New Revision: 25390
URL: https://svn.nixos.org/websvn/nix/?rev=25390&sc=1
Log:
* Add some more Python modules.
Modified:
nixpkgs/branches/modular-python/pkgs/development/interpreters/python/2.7/modules.nix
Modified:
nixpkgs/branches/modular-python/pkgs/development/interpreters/python/2.7/modules.nix
==============================================================================
---
nixpkgs/branches/modular-python/pkgs/development/interpreters/python/2.7/modules.nix
Tue Jan 4 16:08:19 2011 (r25389)
+++
nixpkgs/branches/modular-python/pkgs/development/interpreters/python/2.7/modules.nix
Tue Jan 4 16:10:28 2011 (r25390)
@@ -1,4 +1,4 @@
-{ stdenv, python, sqlite, tcl, tk, x11, openssl, readline }:
+{ stdenv, python, sqlite, tcl, tk, x11, openssl, readline, db4, ncurses, gdbm
}:
with stdenv.lib;
@@ -46,25 +46,41 @@
in {
+ bsddb = buildInternalPythonModule {
+ moduleName = "bsddb";
+ deps = [ db4 ];
+ };
+
+ curses = buildInternalPythonModule {
+ moduleName = "curses";
+ deps = [ ncurses ];
+ };
+
+ gdbm = buildInternalPythonModule {
+ moduleName = "gdbm";
+ internalName = "gdbm";
+ deps = [ gdbm ];
+ };
+
sqlite3 = buildInternalPythonModule {
moduleName = "sqlite3";
deps = [ sqlite ];
};
- tkinter = buildInternalPythonModule {
- moduleName = "tkinter";
- deps = [ tcl tk x11 ];
- };
-
ssl = buildInternalPythonModule {
moduleName = "ssl";
deps = [ openssl ];
};
+ tkinter = buildInternalPythonModule {
+ moduleName = "tkinter";
+ deps = [ tcl tk x11 ];
+ };
+
readline = buildInternalPythonModule {
moduleName = "readline";
internalName = "readline";
deps = [ readline ];
};
-
+
}
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits