Reflect addition of curses_panel python module
This commit is contained in:
parent
fb2cb7bc0f
commit
ebdec6418d
@ -160,6 +160,11 @@ let
|
|||||||
deps = [ ncurses ];
|
deps = [ ncurses ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
curses_panel = buildInternalPythonModule {
|
||||||
|
moduleName = "curses_panel";
|
||||||
|
deps = [ ncurses modules.curses ];
|
||||||
|
};
|
||||||
|
|
||||||
gdbm = buildInternalPythonModule {
|
gdbm = buildInternalPythonModule {
|
||||||
moduleName = "gdbm";
|
moduleName = "gdbm";
|
||||||
internalName = "gdbm";
|
internalName = "gdbm";
|
||||||
|
@ -5,7 +5,7 @@ isPy26 = python.majorVersion == "2.6";
|
|||||||
isPy27 = python.majorVersion == "2.7";
|
isPy27 = python.majorVersion == "2.7";
|
||||||
optional = pkgs.lib.optional;
|
optional = pkgs.lib.optional;
|
||||||
optionals = pkgs.lib.optionals;
|
optionals = pkgs.lib.optionals;
|
||||||
modules = python.modules or { readline = null; sqlite3 = null; curses = null; ssl = null; crypt = null; };
|
modules = python.modules or { readline = null; sqlite3 = null; curses = null; curses_panel = null; ssl = null; crypt = null; };
|
||||||
|
|
||||||
pythonPackages = modules // import ./python-packages-generated.nix {
|
pythonPackages = modules // import ./python-packages-generated.nix {
|
||||||
inherit pkgs python;
|
inherit pkgs python;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user