diff --git a/.gitignore b/.gitignore index 4bcac5d261e..b2d5a9aa5bd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ ,* .*.swp .*.swo +cpan-info +cpan_tmp/ +result diff --git a/pkgs/applications/audio/lame/default.nix b/pkgs/applications/audio/lame/default.nix index 46bbf10f357..09b553a099c 100644 --- a/pkgs/applications/audio/lame/default.nix +++ b/pkgs/applications/audio/lame/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, nasm}: stdenv.mkDerivation rec { - name = "lame-3.98.4"; + name = "lame-3.99.5"; src = fetchurl { url = "mirror://sourceforge/lame/${name}.tar.gz"; - sha256 = "1j3jywv6ic2cy0x0q1a1h6rcl6xmcs5f58xawjdkl8hpcv3l8cdc"; + sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14"; }; buildInputs = [ nasm ]; diff --git a/pkgs/applications/audio/ncmpcpp/default.nix b/pkgs/applications/audio/ncmpcpp/default.nix index a7fca8cabf1..b6ac7f26d60 100644 --- a/pkgs/applications/audio/ncmpcpp/default.nix +++ b/pkgs/applications/audio/ncmpcpp/default.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { homepage = http://unkart.ovh.org/ncmpcpp/; license = "GPLv2+"; maintainers = [ stdenv.lib.maintainers.mornfall ]; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix new file mode 100644 index 00000000000..12ef79d746e --- /dev/null +++ b/pkgs/applications/audio/shntool/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, flac }: + +stdenv.mkDerivation rec { + version = "3.0.10"; + name = "shntool-${version}"; + + src = fetchurl { + url = http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz; + sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l"; + }; + + buildInputs = [ flac ]; + + meta = { + description = "multi-purpose WAVE data processing and reporting utility"; + homepage = http://www.etree.org/shnutils/shntool/; + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.all; + maintainers = with stdenv.lib.maintainers; [ jcumming ]; + }; +} diff --git a/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix b/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix new file mode 100644 index 00000000000..501826b82df --- /dev/null +++ b/pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, lightdm, pkgconfig, gtk3, intltool }: + +stdenv.mkDerivation { + name = "lightdm-gtk-greeter"; + + src = fetchurl { + url = "https://launchpad.net/lightdm-gtk-greeter/1.6/1.5.1/+download/lightdm-gtk-greeter-1.5.1.tar.gz"; + sha256 = "ecce7e917a79fa8f2126c3fafb6337f81f2198892159a4ef695016afecd2d621"; + }; + + buildInputs = [ pkgconfig gtk3 lightdm intltool ]; + + patches = + [ ./lightdm-gtk-greeter.patch + ]; + + patchFlags = "-p0"; + + postInstall = '' + substituteInPlace "$out/share/xgreeters/lightdm-gtk-greeter.desktop" \ + --replace "Exec=lightdm-gtk-greeter" "Exec=$out/sbin/lightdm-gtk-greeter" + ''; +} diff --git a/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch b/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch new file mode 100644 index 00000000000..5ae5603b4dd --- /dev/null +++ b/pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch @@ -0,0 +1,13 @@ +=== modified file 'src/lightdm-gtk-greeter.c' +--- src/lightdm-gtk-greeter.c 2013-02-09 23:20:39 +0000 ++++ src/lightdm-gtk-greeter.c 2013-03-29 12:21:34 +0000 +@@ -1273,7 +1273,7 @@ + gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (session_combo), renderer, TRUE); + gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (session_combo), renderer, "text", 0); + model = gtk_combo_box_get_model (session_combo); +- items = lightdm_get_sessions (); ++ items = lightdm_get_sessions (greeter); + for (item = items; item; item = item->next) + { + LightDMSession *session = item->data; + diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix new file mode 100644 index 00000000000..ce1f4400b27 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2, intltool, x11, libxklavier, libgcrypt, makeWrapper }: + +stdenv.mkDerivation { + name = "lightdm-1.5.1"; + + src = fetchurl { + url = https://launchpad.net/lightdm/1.6/1.5.1/+download/lightdm-1.5.1.tar.xz; + sha256 = "645db2d763cc514d6aecb1838f4a9c33c3dcf0c94567a7ef36c6b23d8aa56c86"; + }; + + buildInputs = [ pkgconfig pam libxcb glib libXdmcp itstool libxml2 intltool libxklavier libgcrypt makeWrapper ]; + + configureFlags = [ "--enable-liblightdm-gobject" ]; + + patches = + [ ./lightdm.patch + ]; + + patchFlags = "-p0"; + + meta = { + homepage = http://launchpad.net/lightdm; + platforms = stdenv.lib.platforms.linux; + }; +} \ No newline at end of file diff --git a/pkgs/applications/display-managers/lightdm/lightdm.patch b/pkgs/applications/display-managers/lightdm/lightdm.patch new file mode 100644 index 00000000000..a6e53bafcc7 --- /dev/null +++ b/pkgs/applications/display-managers/lightdm/lightdm.patch @@ -0,0 +1,193 @@ +=== modified file 'liblightdm-gobject/greeter.c' +--- liblightdm-gobject/greeter.c 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/greeter.c 2013-03-29 14:15:58 +0000 +@@ -567,6 +567,21 @@ + } + + /** ++ * lightdm_greeter_get_config_path ++ * @greeter: A #LightDMGreeter ++ * ++ * Get the config path to LightDM. ++ * ++ * Return value: The path to the current LightDM configuration file. ++ **/ ++const gchar * ++lightdm_greeter_get_config_path (LightDMGreeter *greeter) ++{ ++ g_return_val_if_fail (LIGHTDM_IS_GREETER (greeter), NULL); ++ return lightdm_greeter_get_hint (greeter, "config-path"); ++} ++ ++/** + * lightdm_greeter_get_hide_users_hint: + * @greeter: A #LightDMGreeter + * + +=== modified file 'liblightdm-gobject/lightdm/greeter.h' +--- liblightdm-gobject/lightdm/greeter.h 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/lightdm/greeter.h 2013-03-29 11:56:11 +0000 +@@ -93,6 +93,8 @@ + + const gchar *lightdm_greeter_get_autologin_user_hint (LightDMGreeter *greeter); + ++const gchar *lightdm_greeter_get_config_path (LightDMGreeter *greeter); ++ + gboolean lightdm_greeter_get_autologin_guest_hint (LightDMGreeter *greeter); + + gint lightdm_greeter_get_autologin_timeout_hint (LightDMGreeter *greeter); + +=== modified file 'liblightdm-gobject/lightdm/session.h' +--- liblightdm-gobject/lightdm/session.h 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/lightdm/session.h 2013-03-29 11:59:16 +0000 +@@ -12,6 +12,7 @@ + #define _LIGHTDM_SESSION_H_ + + #include ++#include "greeter.h" + + G_BEGIN_DECLS + +@@ -42,9 +43,9 @@ + + GType lightdm_session_get_type (void); + +-GList *lightdm_get_sessions (void); ++GList *lightdm_get_sessions (LightDMGreeter *greeter); + +-GList *lightdm_get_remote_sessions (void); ++GList *lightdm_get_remote_sessions (LightDMGreeter *greeter); + + const gchar *lightdm_session_get_key (LightDMSession *session); + + +=== modified file 'liblightdm-gobject/session.c' +--- liblightdm-gobject/session.c 2013-01-31 20:56:09 +0000 ++++ liblightdm-gobject/session.c 2013-03-29 14:16:48 +0000 +@@ -11,6 +11,7 @@ + #include + #include + ++#include "lightdm/greeter.h" + #include "lightdm/session.h" + + enum { +@@ -167,7 +168,7 @@ + } + + static void +-update_sessions (void) ++update_sessions (LightDMGreeter *greeter) + { + GKeyFile *config_key_file = NULL; + gchar *config_path = NULL; +@@ -183,8 +184,8 @@ + remote_sessions_dir = g_strdup (REMOTE_SESSIONS_DIR); + + /* Use session directory from configuration */ +- /* FIXME: This should be sent in the greeter connection */ +- config_path = g_build_filename (CONFIG_DIR, "lightdm.conf", NULL); ++ config_path = g_strdup (lightdm_greeter_get_config_path (greeter)); ++ + config_key_file = g_key_file_new (); + result = g_key_file_load_from_file (config_key_file, config_path, G_KEY_FILE_NONE, &error); + if (error) +@@ -228,9 +229,9 @@ + * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession + **/ + GList * +-lightdm_get_sessions (void) ++lightdm_get_sessions (LightDMGreeter *greeter) + { +- update_sessions (); ++ update_sessions (greeter); + return local_sessions; + } + +@@ -242,9 +243,9 @@ + * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession + **/ + GList * +-lightdm_get_remote_sessions (void) ++lightdm_get_remote_sessions (LightDMGreeter *greeter) + { +- update_sessions (); ++ update_sessions (greeter); + return remote_sessions; + } + + +=== modified file 'src/display.c' +--- src/display.c 2013-03-26 22:22:49 +0000 ++++ src/display.c 2013-03-29 12:12:43 +0000 +@@ -62,6 +62,9 @@ + /* Program to run sessions through */ + gchar *session_wrapper; + ++ /* Path to the configuration file that lightdm is running under */ ++ gchar *config_path; ++ + /* TRUE if in a user session */ + gboolean in_user_session; + +@@ -213,6 +216,14 @@ + } + + void ++display_set_config_path (Display *display, const gchar *config_path) ++{ ++ g_return_if_fail (display != NULL); ++ g_free (display->priv->config_path); ++ display->priv->config_path = g_strdup (config_path); ++} ++ ++void + display_set_show_remote_login_hint (Display *display, gboolean show_remote_login) + { + g_return_if_fail (display != NULL); +@@ -436,6 +447,7 @@ + greeter_set_hint (display->priv->greeter, "show-remote-login", display->priv->greeter_show_remote_login ? "true" : "false"); + if (display->priv->greeter_is_lock) + greeter_set_hint (display->priv->greeter, "lock-screen", "true"); ++ greeter_set_hint (display->priv->greeter, "config-path", display->priv->config_path); + + /* Run greeter as unprivileged user */ + if (getuid () != 0) + +=== modified file 'src/display.h' +--- src/display.h 2013-03-26 22:22:49 +0000 ++++ src/display.h 2013-03-29 12:12:37 +0000 +@@ -80,6 +80,8 @@ + + void display_set_user_session (Display *display, SessionType type, const gchar *session_name); + ++void display_set_config_path (Display *display, const gchar *config_path); ++ + gboolean display_start (Display *display); + + gboolean display_get_is_ready (Display *display); + +=== modified file 'src/lightdm.c' +--- src/lightdm.c 2013-03-07 21:40:31 +0000 ++++ src/lightdm.c 2013-03-29 11:48:45 +0000 +@@ -1050,6 +1050,7 @@ + g_debug ("Starting Light Display Manager %s, UID=%i PID=%i", VERSION, getuid (), getpid ()); + + g_debug ("Loaded configuration from %s", config_path); ++ config_set_string (config_get_instance (), "LightDM", "config-path", config_path); + g_free (config_path); + + g_debug ("Using D-Bus name %s", LIGHTDM_BUS_NAME); + +=== modified file 'src/seat.c' +--- src/seat.c 2013-03-26 22:22:49 +0000 ++++ src/seat.c 2013-03-29 12:13:00 +0000 +@@ -536,6 +536,7 @@ + if (!session_name) + session_name = seat_get_string_property (seat, "user-session"); + display_set_user_session (display, SESSION_TYPE_LOCAL, session_name); ++ display_set_config_path (display, config_get_string (config_get_instance (), "LightDM", "config-path")); + + seat->priv->displays = g_list_append (seat->priv->displays, display); + g_signal_emit (seat, signals[DISPLAY_ADDED], 0, display); + diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix index 328181790ac..bf7e2d30420 100644 --- a/pkgs/applications/graphics/rawtherapee/default.nix +++ b/pkgs/applications/graphics/rawtherapee/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau -, libXdmcp, lcms2, libiptcdata +, libXdmcp, lcms2, libiptcdata, libcanberra, fftw , mercurial # Not really needed for anything, but it fails if it does not find 'hg' }: stdenv.mkDerivation rec { - name = "rawtherapee-4.0.9"; + name = "rawtherapee-4.0.10"; src = fetchurl { - url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.9.tar.xz; - sha256 = "1ll7n7gzxs00jpw3gp9xfr90lbwqafkgqpps3j5ig6mf79frpm2a"; + url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.10.tar.xz; + sha256 = "1ibsdm2kqpw796rcdihnnp67vx0wm1d1bnlzq269r9p01w5s102g"; }; buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp - lcms2 libiptcdata mercurial ]; + lcms2 libiptcdata mercurial libcanberra fftw ]; # Disable the use of the RAWZOR propietary libraries cmakeFlags = [ "-DWITH_RAWZOR=OFF" ]; @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { meta = { description = "RAW converter and digital photo processing software"; homepage = http://www.rawtherapee.com/; - license = "GPLv3+"; - maintainers = with stdenv.lib.maintainers; [viric]; + license = stdenv.lib.licenses.gpl3Plus; + maintainers = with stdenv.lib.maintainers; [viric jcumming]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/applications/misc/pitz/default.nix b/pkgs/applications/misc/pitz/default.nix new file mode 100644 index 00000000000..495583d95d4 --- /dev/null +++ b/pkgs/applications/misc/pitz/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, buildPythonPackage, tempita, jinja2, pyyaml, clepy, mock +, nose, decorator, docutils }: + +# TODO: pitz has a pitz-shell utility that depends on ipython, but it just +# errors out and dies (it probably depends on an old ipython version): +# +# from IPython.Shell import IPShellEmbed +# ImportError: No module named Shell +# +# pitz-shell is not the primary interface, so it is not critical to have it +# working. Concider fixing pitz upstream. + +buildPythonPackage rec { + name = "pitz-1.2.4"; + namePrefix = ""; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/pitz/${name}.tar.gz"; + sha256 = "1k7f3h4acllzqy3mjqnjd4w5jskp03s79b7dx3c85vlmd7824smr"; + }; + + # propagatedBuildInputs is needed for pitz to find its dependencies at + # runtime. If we use buildInputs it would just build, not run. + propagatedBuildInputs = [ tempita jinja2 pyyaml clepy mock nose decorator docutils ]; + + meta = { + description = "Distributed bugtracker"; + license = stdenv.lib.licenses.bsd3; + homepage = http://pitz.tplus1.com/; + }; +} diff --git a/pkgs/applications/video/omxplayer/default.nix b/pkgs/applications/video/omxplayer/default.nix new file mode 100644 index 00000000000..b3880067cac --- /dev/null +++ b/pkgs/applications/video/omxplayer/default.nix @@ -0,0 +1,84 @@ +{ stdenv, fetchurl, raspberrypifw, pcre, boostHeaders, freetype, zlib }: + +let + ffmpeg = stdenv.mkDerivation rec { + name = "ffmpeg-1.1.3"; + + src = fetchurl { + url = "http://www.ffmpeg.org/releases/${name}.tar.bz2"; + sha256 = "03s1zsprz5p6gjgwwqcf7b6cvzwwid6l8k7bamx9i0f1iwkgdm0j"; + }; + + configureFlags = [ + "--arch=arm" + "--cpu=arm1176jzf-s" + "--disable-muxers" + "--enable-muxer=spdif" + "--enable-muxer=adts" + "--disable-encoders" + "--enable-encoder=ac3" + "--enable-encoder=aac" + "--disable-decoder=mpeg_xvmc" + "--disable-devices" + "--disable-ffprobe" + "--disable-ffplay" + "--disable-ffserver" + "--disable-ffmpeg" + "--enable-shared" + "--disable-doc" + "--enable-postproc" + "--enable-gpl" + "--enable-protocol=http" + "--enable-pthreads" + "--disable-runtime-cpudetect" + "--enable-pic" + "--disable-armv5te" + "--disable-neon" + "--enable-armv6t2" + "--enable-armv6" + "--enable-hardcoded-tables" + "--disable-runtime-cpudetect" + "--disable-debug" + ]; + + enableParallelBuilding = true; + + crossAttrs = { + dontSetConfigureCross = true; + configureFlags = configureFlags ++ [ + "--cross-prefix=${stdenv.cross.config}-" + "--enable-cross-compile" + "--target_os=linux" + "--arch=${stdenv.cross.arch}" + ]; + }; + + meta = { + homepage = http://www.ffmpeg.org/; + description = "A complete, cross-platform solution to record, convert and stream audio and video"; + }; + }; +in +stdenv.mkDerivation rec { + name = "omxplayer-20130328-fbee325dc2"; + src = fetchurl { + url = https://github.com/huceke/omxplayer/tarball/fbee325dc2; + name = "${name}.tar.gz"; + sha256 = "0fkvv8il7ffqxki2gp8cxa5shh6sz9jsy5vv3f4025g4gss6afkg"; + }; + patchPhase = '' + sed -i 1d Makefile + export INCLUDES="-I${raspberrypifw}/include/interface/vcos/pthreads -I${raspberrypifw}/include/interface/vmcs_host/linux/" + ''; + installPhase = '' + ensureDir $out/bin + cp omxplayer.bin $out/bin + ''; + buildInputs = [ raspberrypifw ffmpeg pcre boostHeaders freetype zlib ]; + + meta = { + homepage = https://github.com/huceke/omxplayer; + description = "Commandline OMX player for the Raspberry Pi"; + license = "GPLv2+"; + }; +} diff --git a/pkgs/applications/video/xbmc/default.nix b/pkgs/applications/video/xbmc/default.nix index 0588f580cc2..0a09fe30ace 100644 --- a/pkgs/applications/video/xbmc/default.nix +++ b/pkgs/applications/video/xbmc/default.nix @@ -30,11 +30,11 @@ assert sambaSupport -> samba != null; assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport; stdenv.mkDerivation rec { - name = "xbmc-12.0"; + name = "xbmc-12.1"; src = fetchurl { url = "http://mirrors.xbmc.org/releases/source/${name}.tar.gz"; - sha256 = "0vy1a38gfbp9vhbjvwqm11sd76gl3s9q0h7gwpsks85m2k88q0ak"; + sha256 = "1hqyq1vl34sywcj8zgx7kdpf8ljzj969l5w6yy4314c431pg7qr9"; }; buildInputs = [ diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 4173660f542..9f9aaa5d665 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -25,6 +25,7 @@ stdenv.mkDerivation rec { homepage = "http://i3wm.org"; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 12e4c91e24d..2331b1eaf81 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 76fc487ba4a..7317f17bb8b 100644 --- a/pkgs/applications/window-managers/i3/status.nix +++ b/pkgs/applications/window-managers/i3/status.nix @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/compilers/chicken/default.nix b/pkgs/development/compilers/chicken/default.nix new file mode 100644 index 00000000000..deb93257df7 --- /dev/null +++ b/pkgs/development/compilers/chicken/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "chicken-4.8.1"; + + meta = { + homepage = http://www.call-cc.org/; + description = "Chicken Scheme"; + }; + + src = fetchurl { + url = http://code.call-cc.org/dev-snapshots/2013/01/04/chicken-4.8.1.tar.gz; + md5 = "bd758ec7abeaeb4f4c92c290fb5f3db7"; + }; + + buildFlags = "PLATFORM=linux PREFIX=$(out) VARDIR=$(out)/var/lib"; + installFlags = "PLATFORM=linux PREFIX=$(out) VARDIR=$(out)/var/lib"; +} diff --git a/pkgs/development/compilers/gcc/4.7/arm-eabi.patch b/pkgs/development/compilers/gcc/4.7/arm-eabi.patch new file mode 100644 index 00000000000..63b017062b5 --- /dev/null +++ b/pkgs/development/compilers/gcc/4.7/arm-eabi.patch @@ -0,0 +1,230 @@ +Index: gcc-4_7-branch/libstdc++-v3/configure.host +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/configure.host (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/configure.host (revision 194580) +@@ -340,7 +340,7 @@ + fi + esac + case "${host}" in +- arm*-*-linux-*eabi) ++ arm*-*-linux-*eabi*) + port_specific_symbol_files="\$(srcdir)/../config/os/gnu-linux/arm-eabi-extra.ver" + ;; + esac +Index: gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs-2.cc (revision 194580) +@@ -1,5 +1,5 @@ + // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } +-// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // 2007-05-03 Benjamin Kosnik + // +Index: gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc +=================================================================== +--- gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc (revision 194579) ++++ gcc-4_7-branch/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs-2.cc (revision 194580) +@@ -1,5 +1,5 @@ + // { dg-options "-std=gnu++0x -funsigned-char -fshort-enums" } +-// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-std=gnu++0x -funsigned-char -fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // 2007-05-03 Benjamin Kosnik + // +Index: gcc-4_7-branch/libjava/configure.ac +=================================================================== +--- gcc-4_7-branch/libjava/configure.ac (revision 194579) ++++ gcc-4_7-branch/libjava/configure.ac (revision 194580) +@@ -931,7 +931,7 @@ + # on Darwin -single_module speeds up loading of the dynamic libraries. + extra_ldflags_libjava=-Wl,-single_module + ;; +-arm*linux*eabi) ++arm*-*-linux*eabi*) + # Some of the ARM unwinder code is actually in libstdc++. We + # could in principle replicate it in libgcj, but it's better to + # have a dependency on libstdc++. +Index: gcc-4_7-branch/libjava/configure +=================================================================== +--- gcc-4_7-branch/libjava/configure (revision 194579) ++++ gcc-4_7-branch/libjava/configure (revision 194580) +@@ -20542,7 +20542,7 @@ + # on Darwin -single_module speeds up loading of the dynamic libraries. + extra_ldflags_libjava=-Wl,-single_module + ;; +-arm*linux*eabi) ++arm*-*-linux*eabi*) + # Some of the ARM unwinder code is actually in libstdc++. We + # could in principle replicate it in libgcj, but it's better to + # have a dependency on libstdc++. +Index: gcc-4_7-branch/libgcc/config.host +=================================================================== +--- gcc-4_7-branch/libgcc/config.host (revision 194579) ++++ gcc-4_7-branch/libgcc/config.host (revision 194580) +@@ -327,7 +327,7 @@ + arm*-*-linux*) # ARM GNU/Linux with ELF + tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix" + case ${host} in +- arm*-*-linux-*eabi) ++ arm*-*-linux-*eabi*) + tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc" + tm_file="$tm_file arm/bpabi-lib.h" + unwind_header=config/arm/unwind-arm.h +Index: gcc-4_7-branch/gcc/doc/install.texi +=================================================================== +--- gcc-4_7-branch/gcc/doc/install.texi (revision 194579) ++++ gcc-4_7-branch/gcc/doc/install.texi (revision 194580) +@@ -3222,7 +3222,7 @@ + @heading @anchor{arm-x-eabi}arm-*-eabi + ARM-family processors. Subtargets that use the ELF object format + require GNU binutils 2.13 or newer. Such subtargets include: +-@code{arm-*-netbsdelf}, @code{arm-*-*linux-gnueabi} ++@code{arm-*-netbsdelf}, @code{arm-*-*linux-gnueabi*} + and @code{arm-*-rtemseabi}. + + @html +Index: gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gcc.target/arm/synchronize.c (revision 194580) +@@ -1,4 +1,4 @@ +-/* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-*eabi } } } */ ++/* { dg-final { scan-assembler "__sync_synchronize|dmb|mcr" { target arm*-*-linux-*eabi* } } } */ + + void *foo (void) + { +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.jason/enum6.C (revision 194580) +@@ -7,10 +7,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + #include + +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.other/enum4.C (revision 194580) +@@ -9,10 +9,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + enum E { + a = -312 +Index: gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/g++.old-deja/g++.law/enum9.C (revision 194580) +@@ -7,10 +7,10 @@ + // enum-size attributes should only be emitted if there are values of + // enum type that can escape the compilation unit, gcc cannot currently + // detect this; if this facility is added then this linker option should +-// not be needed. arm-*-linux*eabi should be a good approximation to ++// not be needed. arm-*-linux*eabi* should be a good approximation to + // those platforms where the EABI supplement defines enum values to be + // 32 bits wide. +-// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + + // GROUPS passed enums + extern "C" int printf (const char *, ...); +Index: gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/lib/target-supports.exp (revision 194580) +@@ -3818,7 +3818,7 @@ + } + } "" + }] +- } elseif { [istarget arm*-*-linux-gnueabi] } { ++ } elseif { [istarget arm*-*-linux-gnueabi*] } { + return [check_runtime sync_longlong_runtime { + #include + int main () +@@ -3860,7 +3860,7 @@ + || [istarget i?86-*-*] + || [istarget x86_64-*-*] + || [istarget alpha*-*-*] +- || [istarget arm*-*-linux-gnueabi] ++ || [istarget arm*-*-linux-gnueabi*] + || [istarget bfin*-*linux*] + || [istarget hppa*-*linux*] + || [istarget s390*-*-*] +@@ -3890,7 +3890,7 @@ + || [istarget i?86-*-*] + || [istarget x86_64-*-*] + || [istarget alpha*-*-*] +- || [istarget arm*-*-linux-gnueabi] ++ || [istarget arm*-*-linux-gnueabi*] + || [istarget hppa*-*linux*] + || [istarget s390*-*-*] + || [istarget powerpc*-*-*] +Index: gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_9.f90 (revision 194580) +@@ -1,6 +1,6 @@ + ! { dg-do run } + ! { dg-options "-fshort-enums" } +-! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + ! Program to test enumerations when option -fshort-enums is given + + program main +Index: gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 +=================================================================== +--- gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 (revision 194579) ++++ gcc-4_7-branch/gcc/testsuite/gfortran.dg/enum_10.f90 (revision 194580) +@@ -1,7 +1,7 @@ + ! { dg-do run } + ! { dg-additional-sources enum_10.c } + ! { dg-options "-fshort-enums -w" } +-! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } } ++! { dg-options "-fshort-enums -w -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi* } } + ! Make sure short enums are indeed interoperable with the + ! corresponding C type. + +Index: gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in +=================================================================== +--- gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in (revision 194579) ++++ gcc-4_7-branch/gcc/ada/gcc-interface/Makefile.in (revision 194580) +@@ -1866,7 +1866,7 @@ + LIBRARY_VERSION := $(LIB_VERSION) + endif + +-ifeq ($(strip $(filter-out arm% linux-gnueabi,$(arch) $(osys)-$(word 4,$(targ)))),) ++ifeq ($(strip $(filter-out arm%-linux,$(arch)-$(osys)) $(if $(findstring eabi,$(word 4,$(targ))),,$(word 4,$(targ)))),) + LIBGNAT_TARGET_PAIRS = \ + a-intnam.ads= 3.7.6.*$|lens|' snap.cabal + ''; meta = { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; diff --git a/pkgs/development/libraries/haskell/split/0.2.1.2.nix b/pkgs/development/libraries/haskell/split/0.2.1.3.nix similarity index 81% rename from pkgs/development/libraries/haskell/split/0.2.1.2.nix rename to pkgs/development/libraries/haskell/split/0.2.1.3.nix index 0482fb243a5..ebadd0f9ba3 100644 --- a/pkgs/development/libraries/haskell/split/0.2.1.2.nix +++ b/pkgs/development/libraries/haskell/split/0.2.1.3.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "split"; - version = "0.2.1.2"; - sha256 = "0wjw4j9wgk66h7filzfh0py9b0wwmaynvwqvd6kinxgms86fpvyi"; + version = "0.2.1.3"; + sha256 = "1s3aga7asxz495bx7i72a6fkdlz1zv20rrrqg1avj7b1sjn3gy9w"; testDepends = [ QuickCheck ]; meta = { description = "Combinator library for splitting lists"; diff --git a/pkgs/development/libraries/haskell/unix-compat/default.nix b/pkgs/development/libraries/haskell/unix-compat/default.nix index d65a440bb22..35097601783 100644 --- a/pkgs/development/libraries/haskell/unix-compat/default.nix +++ b/pkgs/development/libraries/haskell/unix-compat/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "unix-compat"; - version = "0.4.1.0"; - sha256 = "155m3zg692zbfyck4njx1vzvb5vgs0dkzyzlqf2x78ds6j9bzjzi"; + version = "0.4.1.1"; + sha256 = "1cjny6zca5wdj7d56kjkaxlad85kknn91pisrizjy6wngszyaigf"; meta = { homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; diff --git a/pkgs/development/libraries/haskell/vector-space-points/default.nix b/pkgs/development/libraries/haskell/vector-space-points/default.nix index 264391de95f..37a131a3244 100644 --- a/pkgs/development/libraries/haskell/vector-space-points/default.nix +++ b/pkgs/development/libraries/haskell/vector-space-points/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "vector-space-points"; - version = "0.1.2.0"; - sha256 = "19azl6g14rsxs0qbik6x637qw9jv4xl01w65xd0xh7833mypmj6d"; + version = "0.1.2.1"; + sha256 = "0prbmk48xdr2gbxqpv0g89xz5v3k9wps9v2gymkh32jag2lgzi66"; buildDepends = [ newtype vectorSpace ]; meta = { description = "A type for points, as distinct from vectors"; diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix index bffc72e005c..c13af535429 100644 --- a/pkgs/development/libraries/libiconv/default.nix +++ b/pkgs/development/libraries/libiconv/default.nix @@ -14,6 +14,12 @@ stdenv.mkDerivation rec { # will actually use. configureFlags = stdenv.lib.optional stdenv.isCygwin [ "--enable-static" ]; + crossAttrs = { + # Disable stripping to avoid "libiconv.a: Archive has no index" (MinGW). + dontStrip = true; + dontCrossStrip = true; + }; + meta = { description = "GNU libiconv, an iconv(3) implementation"; diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index ce714fd59ff..6a6b693cbbe 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -3,14 +3,14 @@ , libtasn1, ebtables, libgcrypt, yajl }: -let version = "1.0.2"; in +let version = "1.0.3"; in stdenv.mkDerivation { name = "libvirt-${version}"; src = fetchurl { url = "http://libvirt.org/sources/libvirt-${version}.tar.gz"; - sha256 = "0yf104r1377pg0kmx6sshmh8v5z0bdvv6266y5gbcn46yx92g34v"; + sha256 = "0mr727n0ygxk6y69srg3ahmjd7wligamw683x2snmz6wgk6llkzn"; }; buildInputs = @@ -30,7 +30,7 @@ stdenv.mkDerivation { postInstall = '' - substituteInPlace $out/etc/rc.d/init.d/libvirt-guests \ + substituteInPlace $out/libexec/libvirt-guests.sh \ --replace "$out/bin" "${gettext}/bin" ''; diff --git a/pkgs/development/libraries/ti-rpc/default.nix b/pkgs/development/libraries/ti-rpc/default.nix index e3fd2bc34ff..431b8773978 100644 --- a/pkgs/development/libraries/ti-rpc/default.nix +++ b/pkgs/development/libraries/ti-rpc/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv }: stdenv.mkDerivation rec { - name = "libtirpc-0.2.2"; + name = "libtirpc-0.2.3"; src = fetchurl { url = "mirror://sourceforge/libtirpc/${name}.tar.bz2"; - sha256 = "f05eb17c85d62423858b8f74512cfe66a9ae1cedf93f03c2a0a32e04f0a33705"; + sha256 = "0g4jd8da0kfxz5lv1x5v7f3mfxw53cck8g2zz4llrjmlj42flaag"; }; # http://www.sourcemage.org/projects/grimoire/repository/revisions/d6344b6a3a94b88ed67925a474de5930803acfbf diff --git a/pkgs/development/libraries/xmlsec/default.nix b/pkgs/development/libraries/xmlsec/default.nix new file mode 100644 index 00000000000..afb23e4de35 --- /dev/null +++ b/pkgs/development/libraries/xmlsec/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool }: + +let + version = "1.2.19"; +in +stdenv.mkDerivation rec { + name = "xmlsec-${version}"; + + src = fetchurl { + url = "http://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz"; + sha256 = "1h5ar0h8n0l8isgic82w00cwfpw7i9wxw17kbdb6q3yvzb4zgj1g"; + }; + + buildInputs = [ libxml2 gnutls libxslt pkgconfig libgcrypt libtool ]; + + enableParallelBuilding = true; + + meta = { + homepage = http://www.aleksey.com/xmlsec; + description = "XML Security Library in C based on libxml2"; + license = "MIT"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix index 35c340ae0f9..bf1a275046e 100644 --- a/pkgs/development/tools/build-managers/leiningen/default.nix +++ b/pkgs/development/tools/build-managers/leiningen/default.nix @@ -2,20 +2,20 @@ stdenv.mkDerivation rec { pname = "leiningen"; - version = "2.0.0"; + version = "2.1.2"; name = "${pname}-${version}"; src = fetchurl { url = "https://raw.github.com/technomancy/leiningen/${version}/bin/lein-pkg"; - sha256 = "0malymlswxwgh8amkw37qjb8n34ylw3chgbdxgxkq34rkvhv60hb"; + sha256 = "10s4xpwrhd8wz3h2vj8ay4rf2hw8vzswfkr8ckckk3fhjcn130dy"; }; jarsrc = fetchurl { - url = "https://leiningen.s3.amazonaws.com/downloads/leiningen-2.0.0-standalone.jar"; - sha256 = "10jvk19mr5dcl5a9kzna9zslh77v3ixi8awhrhxi30dn1yj3r7ck"; + url = "https://leiningen.s3.amazonaws.com/downloads/${pname}-${version}-standalone.jar"; + sha256 = "08jq21zpsgwsmsz7lpfxidj2s3mv8i23fjwyl9qc6dngskkx45sa"; }; - patches = ./lein_2.0.0.patch; + patches = ./lein_2.1.2.patch; inherit rlwrap clojure; @@ -30,5 +30,6 @@ stdenv.mkDerivation rec { description = "Project automation for Clojure"; license = "EPL"; platforms = stdenv.lib.platforms.unix; + maintainer = with stdenv.lib.maintainers; [the-kenny]; }; } diff --git a/pkgs/development/tools/build-managers/leiningen/lein_2.0.0.patch b/pkgs/development/tools/build-managers/leiningen/lein_2.1.2.patch similarity index 100% rename from pkgs/development/tools/build-managers/leiningen/lein_2.0.0.patch rename to pkgs/development/tools/build-managers/leiningen/lein_2.1.2.patch diff --git a/pkgs/development/web/plone/default.nix b/pkgs/development/web/plone/default.nix index b53254d2968..bd2b8063ea8 100644 --- a/pkgs/development/web/plone/default.nix +++ b/pkgs/development/web/plone/default.nix @@ -1,10151 +1,5701 @@ +# DO NOT EDIT THIS FILE! +# +# Nix expressions autogenerated with: +# bin/pypi2nix-nplone43rc1Packages-dPlone-dmailinglogger-dzc.recipe.egg-dplone.recipe.zope2instance-dPillow-isetuptools-eplone/43rc1.json-pplone/43rc1.txt-oplone/43rc1.nix -{ pkgs, python, buildPythonPackage }: +{ pkgs, python, pythonPackages }: -let plone42Packages = python.modules // rec { +let plone43rc1Packages = python.modules // rec { inherit python; + inherit (pythonPackages) setuptools buildPythonPackage; inherit (pkgs) fetchurl stdenv; - - - accesscontrol = buildPythonPackage rec { - name = "AccessControl-2.13.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/A/AccessControl/${name}.zip"; - md5 = "7e622d99fb17914b4708d26f245cb696"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - acquisition = buildPythonPackage rec { - name = "Acquisition-2.13.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/A/Acquisition/${name}.zip"; - md5 = "8c33160c157b50649e2b2b3224622579"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_kss = buildPythonPackage rec { - name = "archetypes.kss-1.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.kss/${name}.zip"; - md5 = "a8502140123b74f1b7ed4f36d3e56ff3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_querywidget = buildPythonPackage rec { - name = "archetypes.querywidget-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.querywidget/${name}.zip"; - md5 = "cbe134f2806191fd35066bbb7c85bfcc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_referencebrowserwidget = buildPythonPackage rec { - name = "archetypes.referencebrowserwidget-2.4.16"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.referencebrowserwidget/${name}.zip"; - md5 = "7dd3b0d4e188828701a291449c7495f4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - archetypes_schemaextender = buildPythonPackage rec { - name = "archetypes.schemaextender-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/archetypes.schemaextender/${name}.zip"; - md5 = "865aa5b4b6b26e3bb650d89ddfe77c87"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - argparse = buildPythonPackage rec { - name = "argparse-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/a/argparse/${name}.zip"; - md5 = "087399b73047fa5a6482037411ddc968"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - borg_localrole = buildPythonPackage rec { - name = "borg.localrole-3.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/b/borg.localrole/${name}.zip"; - md5 = "04082694dfda9ae5cda62747b8ac7ccf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - buildout_dumppickedversions = buildPythonPackage rec { - name = "buildout.dumppickedversions-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/b/buildout.dumppickedversions/${name}.tar.gz"; - md5 = "e81cffff329aaaaf8dd0d1c6bd63c8b0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - clientform = buildPythonPackage rec { - name = "ClientForm-0.2.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/C/ClientForm/${name}.zip"; - md5 = "33826886848f89c67a5c8a30b931bd97"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_monkeypatcher = buildPythonPackage rec { - name = "collective.monkeypatcher-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.monkeypatcher/${name}.zip"; - md5 = "4d4f20f9b8bb84b24afadc4f56f6dc2c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_recipe_omelette = buildPythonPackage rec { - name = "collective.recipe.omelette-0.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.recipe.omelette/${name}.zip"; - md5 = "088bcf60754bead215573ce114207939"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_testcaselayer = buildPythonPackage rec { - name = "collective.testcaselayer-1.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.testcaselayer/${name}.zip"; - md5 = "fd8387d6b6ebd8645ec92f5f1e512450"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_xmltestreport = buildPythonPackage rec { - name = "collective.xmltestreport-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.xmltestreport/${name}.tar.gz"; - md5 = "f247d47a019b44694660d785f70c05b3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datagridfield = buildPythonPackage rec { - name = "collective.z3cform.datagridfield-0.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datagridfield/${name}.zip"; - md5 = "c9210337b91305314864da42c12d04c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datagridfield_demo = buildPythonPackage rec { - name = "collective.z3cform.datagridfield-demo-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datagridfield/collective.z3cform.datagridfield-0.11.zip"; - md5 = "c9210337b91305314864da42c12d04c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - collective_z3cform_datetimewidget = buildPythonPackage rec { - name = "collective.z3cform.datetimewidget-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/collective.z3cform.datetimewidget/${name}.zip"; - md5 = "89daf27c7f0f235f9c001f0ee50d76e5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - coverage = buildPythonPackage rec { - name = "coverage-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/c/coverage/${name}.tar.gz"; - md5 = "28c43d41b13f8987ea14d7b1d4a4e3ec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - datetime = buildPythonPackage rec { - name = "DateTime-2.12.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/D/DateTime/${name}.zip"; - md5 = "72a8bcf80b52211ae7fdfe36c693d70c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - diazo = buildPythonPackage rec { - name = "diazo-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/d/diazo/${name}.zip"; - md5 = "d3c2b017af521db4c86fb360c86e0bc8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - documenttemplate = buildPythonPackage rec { - name = "DocumentTemplate-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/D/DocumentTemplate/${name}.zip"; - md5 = "07bb086c77c1dfe94125ad2efbba94b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - docutils = buildPythonPackage rec { - name = "docutils-0.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/d/docutils/${name}.1.tar.gz"; - md5 = "b0d5cd5298fedf9c62f5fd364a274d56"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - elementtree = buildPythonPackage rec { - name = "elementtree-1.2.7-20070827-preview"; - - src = fetchurl { - url = "http://effbot.org/media/downloads/elementtree-1.2.7-20070827-preview.zip"; - md5 = "30e2fe5edd143f347e03a8baf5d60f8a"; - }; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - experimental_cssselect = buildPythonPackage rec { - name = "experimental.cssselect-0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/e/experimental.cssselect/${name}.zip"; - md5 = "3fecdcf1fbc3ea6025e115a56a262957"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - extensionclass = buildPythonPackage rec { - name = "ExtensionClass-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/E/ExtensionClass/${name}.zip"; - md5 = "0236e6d7da9e8b87b9ba45f1b8f930b8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - feedparser = buildPythonPackage rec { - name = "feedparser-5.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/feedparser/${name}.tar.bz2"; - md5 = "702835de74bd4a578524f311e62c2877"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_customerize = buildPythonPackage rec { - name = "five.customerize-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.customerize/${name}.zip"; - md5 = "32f597c2fa961f7dcc84b23e655d928e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_formlib = buildPythonPackage rec { - name = "five.formlib-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.formlib/${name}.zip"; - md5 = "09fcecbb7e0ed4a31a4f19787c1a78b4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_globalrequest = buildPythonPackage rec { - name = "five.globalrequest-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.globalrequest/${name}.tar.gz"; - md5 = "87f8996bd21d4aa156aa26e7d21b8744"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_grok = buildPythonPackage rec { - name = "five.grok-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.grok/${name}.zip"; - md5 = "b99c3017f3a487dc2a8b7b0b310ee8cf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_intid = buildPythonPackage rec { - name = "five.intid-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.intid/${name}.zip"; - md5 = "60c6726c07a1c1bf557aeec0ddcee369"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - five_localsitemanager = buildPythonPackage rec { - name = "five.localsitemanager-2.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/f/five.localsitemanager/${name}.zip"; - md5 = "5e3a658e6068832bd802018ebc83f2d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_annotation = buildPythonPackage rec { - name = "grokcore.annotation-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.annotation/${name}.tar.gz"; - md5 = "a28ccb4b7c86198923d9cce40953314f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_component = buildPythonPackage rec { - name = "grokcore.component-1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.component/${name}.tar.gz"; - md5 = "24b05b6b132787dbca18acd244c23ffb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_formlib = buildPythonPackage rec { - name = "grokcore.formlib-1.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.formlib/${name}.tar.gz"; - md5 = "dced4aba77053ed78a358a1f5e85d9c4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_security = buildPythonPackage rec { - name = "grokcore.security-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.security/${name}.tar.gz"; - md5 = "1e668b7e423814fa069c69f2a4014876"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_site = buildPythonPackage rec { - name = "grokcore.site-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.site/${name}.tar.gz"; - md5 = "bd16753e6d4f1c0ff38266d2ae79633d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_view = buildPythonPackage rec { - name = "grokcore.view-1.13.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.view/${name}.tar.gz"; - md5 = "304363398aa752d5e1479bab39b93e4e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - grokcore_viewlet = buildPythonPackage rec { - name = "grokcore.viewlet-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/g/grokcore.viewlet/${name}.tar.gz"; - md5 = "5e53b3c77941f9ad0ff2aeb7c1b6dd7d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - initgroups = buildPythonPackage rec { - name = "initgroups-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/i/initgroups/${name}.zip"; - md5 = "38e842dcab8445f65e701fec75213acd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - jinja2 = buildPythonPackage rec { - name = "Jinja2-2.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/J/Jinja2/${name}.tar.gz"; - md5 = "83b20c1eeb31f49d8e6392efae91b7d5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - kss_core = buildPythonPackage rec { - name = "kss.core-1.6.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/k/kss.core/${name}.zip"; - md5 = "87e66e78c3bbd7af3ecce5b2fef935ae"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mailinglogger = buildPythonPackage rec { - name = "mailinglogger-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mailinglogger/${name}.tar.gz"; - md5 = "f865f0df6059ce23062b7457d01dbac5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - manuel = buildPythonPackage rec { - name = "manuel-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/manuel/${name}.tar.gz"; - md5 = "8cd560cf6e8720ecb129c4e5be605fbb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - markdown = buildPythonPackage rec { - name = "Markdown-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/Markdown/${name}.zip"; - md5 = "122418893e21e91109edbf6e082f830d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - martian = buildPythonPackage rec { - name = "martian-0.11.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/martian/${name}.tar.gz"; - md5 = "865646fcd9dd31613204d5f4c2db943b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mechanize = buildPythonPackage rec { - name = "mechanize-0.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mechanize/${name}.zip"; - md5 = "a497ad4e875f7506ffcf8ad3ada4c2fc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - missing = buildPythonPackage rec { - name = "Missing-2.13.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/Missing/${name}.zip"; - md5 = "9823cff54444cbbcaef8fc45d8e42572"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mocker = buildPythonPackage rec { - name = "mocker-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mocker/${name}.tar.bz2"; - md5 = "0bd9f83268e16aef2130fa89e2a4839f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - mr_developer = buildPythonPackage rec { - name = "mr.developer-1.21"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/m/mr.developer/${name}.zip"; - md5 = "5f832f1709714b09cd7490603afd2365"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - multimapping = buildPythonPackage rec { - name = "MultiMapping-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/M/MultiMapping/${name}.zip"; - md5 = "d69c5904c105b9f2f085d4103e0f0586"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - nose = buildPythonPackage rec { - name = "nose-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/n/nose/${name}.tar.gz"; - md5 = "144f237b615e23f21f6a50b2183aa817"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - nt_svcutils = buildPythonPackage rec { - name = "nt-svcutils-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/n/nose/nose-1.1.2.tar.gz"; - md5 = "144f237b615e23f21f6a50b2183aa817"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - ordereddict = buildPythonPackage rec { - name = "ordereddict-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz"; - md5 = "a0ed854ee442051b249bfad0f638bbec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - paste = buildPythonPackage rec { - name = "Paste-1.7.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Paste/${name}.tar.gz"; - md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pastedeploy = buildPythonPackage rec { - name = "PasteDeploy-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteDeploy/${name}.tar.gz"; - md5 = "eb4b3e2543d54401249c2cbd9f2d014f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pastescript = buildPythonPackage rec { - name = "PasteScript-1.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteScript/${name}.tar.gz"; - md5 = "4c72d78dcb6bb993f30536842c16af4d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ paste pastedeploy ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - persistence = buildPythonPackage rec { - name = "Persistence-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Persistence/${name}.zip"; - md5 = "92693648ccdc59c8fc71f7f06b1d228c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pil = buildPythonPackage rec { - name = "PIL-1.1.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Persistence/Persistence-2.13.2.zip"; - md5 = "92693648ccdc59c8fc71f7f06b1d228c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone = buildPythonPackage rec { - name = "Plone-4.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Plone/${name}.zip"; - md5 = "688438bd541e7cb2ab650c8c59282b85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_alterego = buildPythonPackage rec { - name = "plone.alterego-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.alterego/${name}.zip"; - md5 = "b7b6dbcbba00505d98d5aba83e016408"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_blob = buildPythonPackage rec { - name = "plone.app.blob-1.5.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.blob/${name}.zip"; - md5 = "8d6ba6f360b6bfd40f87914132339660"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_caching = buildPythonPackage rec { - name = "plone.app.caching-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.caching/${name}.zip"; - md5 = "83a52efeb7604d4c5b4afbc6c1365c6f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_collection = buildPythonPackage rec { - name = "plone.app.collection-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.collection/${name}.zip"; - md5 = "40c9035472e386fc9d0ec1b9a9a3d4f6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_content = buildPythonPackage rec { - name = "plone.app.content-2.0.12"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.content/${name}.zip"; - md5 = "2f14a85fb66d73e0b699b839caaaad26"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentlisting = buildPythonPackage rec { - name = "plone.app.contentlisting-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentlisting/${name}.zip"; - md5 = "fa6eb45c4ffd0eb3817ad4813ca24916"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentmenu = buildPythonPackage rec { - name = "plone.app.contentmenu-2.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentmenu/${name}.zip"; - md5 = "b1c7e5a37c659ba30b3a077e149b1752"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_contentrules = buildPythonPackage rec { - name = "plone.app.contentrules-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.contentrules/${name}.zip"; - md5 = "74d2fed9095a7c5f890b6f27de78dafc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_controlpanel = buildPythonPackage rec { - name = "plone.app.controlpanel-2.2.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.controlpanel/${name}.zip"; - md5 = "401c8880865f398c281953f5837108b9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_customerize = buildPythonPackage rec { - name = "plone.app.customerize-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.customerize/${name}.zip"; - md5 = "6a3802c4e8fbd955597adc6a8298febf"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_dexterity = buildPythonPackage rec { - name = "plone.app.dexterity-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.dexterity/${name}.zip"; - md5 = "25ccd382f9e08cfdfe4a9b7e455030bc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_discussion = buildPythonPackage rec { - name = "plone.app.discussion-2.1.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.discussion/${name}.zip"; - md5 = "b0cb1fbdf8a7a238cf5a58fb10c24731"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_folder = buildPythonPackage rec { - name = "plone.app.folder-1.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.folder/${name}.zip"; - md5 = "8ea860daddb4c93c0b7f2b5f7106fef0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_form = buildPythonPackage rec { - name = "plone.app.form-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.form/${name}.zip"; - md5 = "8017f8f782d992825ed71d16b126c4e7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_i18n = buildPythonPackage rec { - name = "plone.app.i18n-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.i18n/${name}.zip"; - md5 = "a10026573463dfc1899bf4062cebdbf2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_imaging = buildPythonPackage rec { - name = "plone.app.imaging-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.imaging/${name}.zip"; - md5 = "8d494cd69b3f6be7fcb9e21c20277765"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_intid = buildPythonPackage rec { - name = "plone.app.intid-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.intid/${name}.tar.gz"; - md5 = "863077002bd272ff11c47de0f7f9db1a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_iterate = buildPythonPackage rec { - name = "plone.app.iterate-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.iterate/${name}.zip"; - md5 = "db598cfc0986737145ddc7e6b70a1794"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_jquery = buildPythonPackage rec { - name = "plone.app.jquery-1.4.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.jquery/${name}.zip"; - md5 = "a12d56f3dfd2ba6840bf21a6bd860b90"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_jquerytools = buildPythonPackage rec { - name = "plone.app.jquerytools-1.3.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.jquerytools/${name}.zip"; - md5 = "326470a34e07aa98c40d75ec22484572"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_kss = buildPythonPackage rec { - name = "plone.app.kss-1.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.kss/${name}.zip"; - md5 = "97a35086fecfe25e55b65042eb35e796"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_layout = buildPythonPackage rec { - name = "plone.app.layout-2.2.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.layout/${name}.zip"; - md5 = "90ea408f5e01aeb01517d55eb6b6063a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_linkintegrity = buildPythonPackage rec { - name = "plone.app.linkintegrity-1.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.linkintegrity/${name}.zip"; - md5 = "41810cc85ca05921a329aac5bc4cf403"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_locales = buildPythonPackage rec { - name = "plone.app.locales-4.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.locales/${name}.zip"; - md5 = "baf48a0a5278a18fa1c2848d3470464f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_lockingbehavior = buildPythonPackage rec { - name = "plone.app.lockingbehavior-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.lockingbehavior/${name}.tar.gz"; - md5 = "a25745f1f40c6298da1b228ccd95ee27"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_openid = buildPythonPackage rec { - name = "plone.app.openid-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.openid/${name}.tar.gz"; - md5 = "ae0748f91cab0612a498926d405d8edd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - plone_app_portlets = buildPythonPackage rec { - name = "plone.app.portlets-2.3.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.portlets/${name}.zip"; - md5 = "534be67a7a17a71ca1e76f6f149ff2ac"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_querystring = buildPythonPackage rec { - name = "plone.app.querystring-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.querystring/${name}.zip"; - md5 = "b501910b23def9b58e8309d1e469eb6f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_redirector = buildPythonPackage rec { - name = "plone.app.redirector-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.redirector/${name}.zip"; - md5 = "7d441340a83b8ed72a03bc16148a5f21"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_referenceablebehavior = buildPythonPackage rec { - name = "plone.app.referenceablebehavior-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.referenceablebehavior/${name}.zip"; - md5 = "2359140966f753204d5091bb49fce85c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_registry = buildPythonPackage rec { - name = "plone.app.registry-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.registry/${name}.zip"; - md5 = "0fdbb01e9ff71108f1be262c39b41b81"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_relationfield = buildPythonPackage rec { - name = "plone.app.relationfield-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.relationfield/${name}.zip"; - md5 = "d19888741677cd457ac7f22dde97ded0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_search = buildPythonPackage rec { - name = "plone.app.search-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.search/${name}.zip"; - md5 = "bd5a1f4b5016a6d0a8697e7a9cc04833"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_stagingbehavior = buildPythonPackage rec { - name = "plone.app.stagingbehavior-0.1b4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.stagingbehavior/${name}.zip"; - md5 = "0f9589ec056c303ea0c81a804dd411eb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_testing = buildPythonPackage rec { - name = "plone.app.testing-4.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.testing/${name}.zip"; - md5 = "1a40df72c8beda9520b83dc449a97a3c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_textfield = buildPythonPackage rec { - name = "plone.app.textfield-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.textfield/${name}.zip"; - md5 = "f832887a40826d6f68c48b48f071fb9c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_theming = buildPythonPackage rec { - name = "plone.app.theming-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.theming/${name}.zip"; - md5 = "2da6d810e0d5f295dd0daa2b60731a1b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_upgrade = buildPythonPackage rec { - name = "plone.app.upgrade-1.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.upgrade/${name}.zip"; - md5 = "2798dd50863d8c25624400b988a0acdd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_users = buildPythonPackage rec { - name = "plone.app.users-1.1.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.users/${name}.zip"; - md5 = "97895d8dbdf885784be1afbf5b8b364c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_uuid = buildPythonPackage rec { - name = "plone.app.uuid-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.uuid/${name}.zip"; - md5 = "9ca8dcfb09a8a0d6bbee0f28073c3d3f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_versioningbehavior = buildPythonPackage rec { - name = "plone.app.versioningbehavior-1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.versioningbehavior/${name}.zip"; - md5 = "6c153e3fa10b9ffea9742d0dad7b3b85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_viewletmanager = buildPythonPackage rec { - name = "plone.app.viewletmanager-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.viewletmanager/${name}.zip"; - md5 = "1dbc51c7664ce3e6ca4dcca1b7b86082"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_vocabularies = buildPythonPackage rec { - name = "plone.app.vocabularies-2.1.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.vocabularies/${name}.zip"; - md5 = "34d4eb9c95879811fec0875aa3235ed3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_workflow = buildPythonPackage rec { - name = "plone.app.workflow-2.0.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.workflow/${name}.zip"; - md5 = "350ea680ccf7eb9b1598927cafad4f38"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_app_z3cform = buildPythonPackage rec { - name = "plone.app.z3cform-0.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.app.z3cform/${name}.zip"; - md5 = "2e77f5e03d48a6fb2eb9994edb871917"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_autoform = buildPythonPackage rec { - name = "plone.autoform-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.autoform/${name}.zip"; - md5 = "4cb2935ba9cda3eb3ee801ad8cda7c60"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_behavior = buildPythonPackage rec { - name = "plone.behavior-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.behavior/${name}.zip"; - md5 = "a18feb9ec744b2a64028c366a8835d59"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_browserlayer = buildPythonPackage rec { - name = "plone.browserlayer-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.browserlayer/${name}.zip"; - md5 = "bce02f4907a4f29314090c525e5fc28e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_cachepurging = buildPythonPackage rec { - name = "plone.cachepurging-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.cachepurging/${name}.zip"; - md5 = "886814ac4deef0f1ed99a2eb60864264"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_caching = buildPythonPackage rec { - name = "plone.caching-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.caching/${name}.zip"; - md5 = "2c2e3b27d13b9101c92dfed222fde36c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_contentrules = buildPythonPackage rec { - name = "plone.contentrules-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.contentrules/${name}.zip"; - md5 = "a32370656c4fd58652fcd8a234db69c5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_dexterity = buildPythonPackage rec { - name = "plone.dexterity-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.dexterity/${name}.zip"; - md5 = "c8f495e368ada3a4566d99995d09e64c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_directives_dexterity = buildPythonPackage rec { - name = "plone.directives.dexterity-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.directives.dexterity/${name}.zip"; - md5 = "713b87644e3591b60b4a8ebd52987477"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_directives_form = buildPythonPackage rec { - name = "plone.directives.form-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.directives.form/${name}.zip"; - md5 = "e40a4b3fdde3768a137a450374934565"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_fieldsets = buildPythonPackage rec { - name = "plone.fieldsets-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.fieldsets/${name}.zip"; - md5 = "4158c8a1f784fcb5cecbd63deda7222f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_folder = buildPythonPackage rec { - name = "plone.folder-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.folder/${name}.zip"; - md5 = "1674ff18b7a9452d0c2063cf11c679b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_autocomplete = buildPythonPackage rec { - name = "plone.formwidget.autocomplete-1.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.autocomplete/${name}.zip"; - md5 = "06b3bfed9ea51fe2e93827f539fc7f07"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_contenttree = buildPythonPackage rec { - name = "plone.formwidget.contenttree-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.contenttree/${name}.zip"; - md5 = "2ea222d53ca856de7c6df831707f4ac1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_formwidget_namedfile = buildPythonPackage rec { - name = "plone.formwidget.namedfile-1.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.formwidget.namedfile/${name}.zip"; - md5 = "9274db2f5d7b4d07748fabfd125e49d0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_i18n = buildPythonPackage rec { - name = "plone.i18n-2.0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.i18n/${name}.zip"; - md5 = "ef36aa9a294d507abb37787f9f7700bd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_indexer = buildPythonPackage rec { - name = "plone.indexer-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.indexer/${name}.zip"; - md5 = "538aeee1f9db78bc8c85ae1bcb0153ed"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_intelligenttext = buildPythonPackage rec { - name = "plone.intelligenttext-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.intelligenttext/${name}.zip"; - md5 = "51688fa0815b49e00334e3ef948328ba"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_keyring = buildPythonPackage rec { - name = "plone.keyring-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.keyring/${name}.zip"; - md5 = "f3970e9bddb2cc65e461a2c62879233f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_locking = buildPythonPackage rec { - name = "plone.locking-2.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.locking/${name}.zip"; - md5 = "a7f8b8db78f57272d351d7fe0d067eb2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_memoize = buildPythonPackage rec { - name = "plone.memoize-1.1.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.memoize/${name}.zip"; - md5 = "d07cd14b976160e1f26a859e3370147e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_mocktestcase = buildPythonPackage rec { - name = "plone.mocktestcase-1.0b3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.mocktestcase/${name}.tar.gz"; - md5 = "6de66da6d610537d1f5c31e2ab0f36ee"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_namedfile = buildPythonPackage rec { - name = "plone.namedfile-1.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.namedfile/${name}.zip"; - md5 = "06f5bfa7079f889307ac5760e4cb4a7b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_openid = buildPythonPackage rec { - name = "plone.openid-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.openid/${name}.zip"; - md5 = "d4c36926a6dbefed035ed92c29329ce1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_outputfilters = buildPythonPackage rec { - name = "plone.outputfilters-1.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.outputfilters/${name}.zip"; - md5 = "a5ef28580f7fa7f2dc1768893995b0f7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlet_collection = buildPythonPackage rec { - name = "plone.portlet.collection-2.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlet.collection/${name}.zip"; - md5 = "5f0006dbb3e0b56870383dfdedc49228"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlet_static = buildPythonPackage rec { - name = "plone.portlet.static-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlet.static/${name}.zip"; - md5 = "ec0dc691b4191a41ff97779b117f9985"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_portlets = buildPythonPackage rec { - name = "plone.portlets-2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.portlets/${name}.zip"; - md5 = "12b9a33f787756a48617c2d2dd63c538"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_protect = buildPythonPackage rec { - name = "plone.protect-2.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.protect/${name}.zip"; - md5 = "74925ffb08782e72f9b1e850fa78fffa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_recipe_alltests = buildPythonPackage rec { - name = "plone.recipe.alltests-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.recipe.alltests/${name}.zip"; - md5 = "c4ba0f67a2fdd259bd0e7d946bd35674"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_recipe_zeoserver = buildPythonPackage rec { - name = "plone.recipe.zeoserver-1.2.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.recipe.zeoserver/${name}.zip"; - md5 = "cd58899a7d534fe2d0ef42990a07c499"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_registry = buildPythonPackage rec { - name = "plone.registry-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.registry/${name}.zip"; - md5 = "6be3d2ec7e2d170e29b8c0bc65049aff"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_reload = buildPythonPackage rec { - name = "plone.reload-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.reload/${name}.zip"; - md5 = "49eab593c81b78a9b80d54786aa4ad72"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_resource = buildPythonPackage rec { - name = "plone.resource-1.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.resource/${name}.zip"; - md5 = "594d41e3acd913ae92f2e9ef96503b9f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_rfc822 = buildPythonPackage rec { - name = "plone.rfc822-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.rfc822/${name}.zip"; - md5 = "b5b79bb5a9181da624a7e88940a45424"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_scale = buildPythonPackage rec { - name = "plone.scale-1.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.scale/${name}.zip"; - md5 = "7c59522b4806ee24f5e0a5fa69c523a5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_schemaeditor = buildPythonPackage rec { - name = "plone.schemaeditor-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.schemaeditor/${name}.zip"; - md5 = "0b0fb4b20d9463b3fef82c2079a897d7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_session = buildPythonPackage rec { - name = "plone.session-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.session/${name}.zip"; - md5 = "2f9d3b88e813a47135af56a4da8bbde1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_stringinterp = buildPythonPackage rec { - name = "plone.stringinterp-1.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.stringinterp/${name}.zip"; - md5 = "81909716210c6ac3fd0ee87f45ea523d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_subrequest = buildPythonPackage rec { - name = "plone.subrequest-1.6.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.subrequest/${name}.zip"; - md5 = "cc12f68a22565415b10dbeef0020baa4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_supermodel = buildPythonPackage rec { - name = "plone.supermodel-1.1.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.supermodel/${name}.zip"; - md5 = "00b3d723bb1a48116fe3bf8754f17085"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_synchronize = buildPythonPackage rec { - name = "plone.synchronize-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.synchronize/${name}.zip"; - md5 = "d25e86ace8daa0816861296c3288c4fb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_testing = buildPythonPackage rec { - name = "plone.testing-4.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.testing/${name}.zip"; - md5 = "fa40f6d3e3e254409c486c1c2c3e8804"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_theme = buildPythonPackage rec { - name = "plone.theme-2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.theme/${name}.zip"; - md5 = "c592d0d095e9fc76cc81597cdf6d0c37"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_transformchain = buildPythonPackage rec { - name = "plone.transformchain-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.transformchain/${name}.zip"; - md5 = "f5fb7ca894249e3e666501c4fae52a6c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_uuid = buildPythonPackage rec { - name = "plone.uuid-1.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.uuid/${name}.zip"; - md5 = "183fe2911a7d6c9f6b3103855e98ad8a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plone_z3cform = buildPythonPackage rec { - name = "plone.z3cform-0.7.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plone.z3cform/${name}.zip"; - md5 = "da891365156a5d5824d4e504465886a2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plonetheme_classic = buildPythonPackage rec { - name = "plonetheme.classic-1.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plonetheme.classic/${name}.zip"; - md5 = "9dc15871937f9cdf94cdfdb9be77a221"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - plonetheme_sunburst = buildPythonPackage rec { - name = "plonetheme.sunburst-1.2.8"; - + name = "plone.app.portlets-2.4.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/p/plonetheme.sunburst/${name}.zip"; - md5 = "be02660c869e04ac8cf6ade3559f2516"; + url = "http://pypi.python.org/packages/source/p/plone.app.portlets/plone.app.portlets-2.4.2.zip"; + md5 = "712f14bb916d63e53fc06c76c02986dc"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface zope_traversing plone_app_form datetime zope_container zope_lifecycleevent zope_annotation five_customerize zope_i18nmessageid zope_publisher products_genericsetup plone_i18n feedparser zope_event zope_browser zope_contentprovider plone_memoize zope2 zope_schema acquisition transaction products_pluggableauthservice zope_site zope_component plone_app_vocabularies plone_portlets plone_app_i18n zope_configuration zope_formlib zodb3 five_formlib setuptools products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_archetypes = buildPythonPackage rec { - name = "Products.Archetypes-1.8.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.Archetypes/${name}.zip"; - md5 = "74be68879b27228c084a9be869132a98"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - products_atcontenttypes = buildPythonPackage rec { - name = "Products.ATContentTypes-2.1.11"; - + zope2 = buildPythonPackage rec { + name = "Zope2-2.13.19"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ATContentTypes/${name}.zip"; - md5 = "abfb5209ffa11dc2c1a15c488e75d89c"; + url = "http://pypi.python.org/packages/source/Z/Zope2/Zope2-2.13.19.zip"; + md5 = "26fee311aace7c12e406543ea91eb42a"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_testing zope_interface zope_traversing multimapping zope_size zope_contenttype zope_browserpage datetime zope_component zope_sendmail zope_lifecycleevent products_zctextindex products_standardcachemanagers persistence products_mimetools zope_i18nmessageid zope_publisher missing zope_viewlet zope_sequencesort zope_testbrowser docutils zope_event products_pythonscripts zope_browser zope_structuredtext zope_contentprovider zope_browsermenu zope_tal zope_exceptions products_mailhost products_btreefolder2 zopeundo zconfig record accesscontrol pytz products_ofsp zope_schema zexceptions zope_processlifetime acquisition extensionclass zope_proxy zope_site zope_container zope_pagetemplate zdaemon zope_browserresource zope_deferredimport initgroups zope_security zope_configuration zope_i18n products_zcatalog restrictedpython zodb3 documenttemplate setuptools zope_ptresource zlog tempstorage transaction zope_tales zope_location products_externalmethod ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_atreferencebrowserwidget = buildPythonPackage rec { - name = "Products.ATReferenceBrowserWidget-3.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ATReferenceBrowserWidget/${name}.zip"; - md5 = "157bdd32155c8353450c17c649aad042"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - products_btreefolder2 = buildPythonPackage rec { name = "Products.BTreeFolder2-2.13.3"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.BTreeFolder2/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/P/Products.BTreeFolder2/Products.BTreeFolder2-2.13.3.tar.gz"; md5 = "f57c85673036af7ccd34c3fa251f6bb2"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ accesscontrol zope_container zodb3 zope_event persistence setuptools zope_lifecycleevent acquisition ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - products_cmfactionicons = buildPythonPackage rec { - name = "Products.CMFActionIcons-2.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFActionIcons/${name}.tar.gz"; - md5 = "ab1dc62404ed11aea84dc0d782b2235e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfcalendar = buildPythonPackage rec { - name = "Products.CMFCalendar-2.2.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFCalendar/${name}.tar.gz"; - md5 = "49458e68dc3b6826ea9a3576ac014419"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfcore = buildPythonPackage rec { - name = "Products.CMFCore-2.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFCore/${name}.tar.gz"; - md5 = "9320a4023b8575097feacfd4a400e930"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdefault = buildPythonPackage rec { - name = "Products.CMFDefault-2.2.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDefault/${name}.tar.gz"; - md5 = "fe7d2d3906ee0e3b484e4a02401576ab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdifftool = buildPythonPackage rec { - name = "Products.CMFDiffTool-2.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDiffTool/${name}.zip"; - md5 = "7b7ed9b8f7b4f438e92e299823f92c86"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfdynamicviewfti = buildPythonPackage rec { - name = "Products.CMFDynamicViewFTI-4.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFDynamicViewFTI/${name}.zip"; - md5 = "7d39d416b41b2d93954bc73d9d0e077f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfeditions = buildPythonPackage rec { - name = "Products.CMFEditions-2.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFEditions/${name}.zip"; - md5 = "7dc744b3b896c1b212d9ba37b1752b65"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfformcontroller = buildPythonPackage rec { - name = "Products.CMFFormController-3.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFFormController/${name}.zip"; - md5 = "6573df7dcb39e3b63ba22abe2acd639e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfplacefulworkflow = buildPythonPackage rec { - name = "Products.CMFPlacefulWorkflow-1.5.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFPlacefulWorkflow/${name}.zip"; - md5 = "9041e1f52eab5b348c0dfa85be438722"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfplone = buildPythonPackage rec { - name = "Products.CMFPlone-4.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFPlone/${name}.zip"; - md5 = "9c9663cb2b68c07e3d9a2fceaa97eaa1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfquickinstallertool = buildPythonPackage rec { - name = "Products.CMFQuickInstallerTool-3.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFQuickInstallerTool/${name}.tar.gz"; - md5 = "af34adb87ddf2b6da48eff8b70ca2989"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmftestcase = buildPythonPackage rec { - name = "Products.CMFTestCase-0.9.12"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFTestCase/${name}.zip"; - md5 = "fbfdfe7bdb2158419d9899b4ab8c43eb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmftopic = buildPythonPackage rec { - name = "Products.CMFTopic-2.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFTopic/${name}.tar.gz"; - md5 = "4abeeaafe6b6b1d2f2936bf5431cccba"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_cmfuid = buildPythonPackage rec { - name = "Products.CMFUid-2.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.CMFUid/${name}.tar.gz"; - md5 = "e20727959351dffbf0bac80613eee110"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_contentmigration = buildPythonPackage rec { - name = "Products.contentmigration-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.contentmigration/${name}.zip"; - md5 = "1cef33faec03e655b7c52c317db50ed2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_dcworkflow = buildPythonPackage rec { - name = "Products.DCWorkflow-2.2.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.DCWorkflow/${name}.tar.gz"; - md5 = "c90a16c4f3611015592ba8173a5f1863"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - propagatedBuildInputs = [ eggtestinfo ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_extendedpathindex = buildPythonPackage rec { - name = "Products.ExtendedPathIndex-3.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExtendedPathIndex/${name}.zip"; - md5 = "00c048a4b103200bdcbda61fa22c66df"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_externaleditor = buildPythonPackage rec { - name = "Products.ExternalEditor-1.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExternalEditor/${name}.zip"; - md5 = "475fea6e0b958c0c51cfdbfef2f4e623"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_externalmethod = buildPythonPackage rec { - name = "Products.ExternalMethod-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ExternalMethod/${name}.zip"; - md5 = "15ba953ef6cb632eb571977651252ea6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_genericsetup = buildPythonPackage rec { - name = "Products.GenericSetup-1.7.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.GenericSetup/${name}.tar.gz"; - md5 = "c48967c81c880ed33ee16a14caab3b11"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_i18ntestcase = buildPythonPackage rec { - name = "Products.i18ntestcase-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.i18ntestcase/${name}.zip"; - md5 = "f72f72e573975f15adfabfeef34fd721"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_kupu = buildPythonPackage rec { - name = "Products.kupu-1.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.kupu/${name}.zip"; - md5 = "b884fcc7f510426974d8d3c4333da4f4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mailhost = buildPythonPackage rec { - name = "Products.MailHost-2.13.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MailHost/${name}.zip"; - md5 = "1102e523435d8bf78a15b9ddb57478e1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_marshall = buildPythonPackage rec { - name = "Products.Marshall-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.Marshall/${name}.zip"; - md5 = "bde4d7f75195c1ded8371554b04d2541"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mimetools = buildPythonPackage rec { - name = "Products.MIMETools-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MIMETools/${name}.zip"; - md5 = "ad5372fc1190599a19493db0864448ec"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_mimetypesregistry = buildPythonPackage rec { - name = "Products.MimetypesRegistry-2.0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.MimetypesRegistry/${name}.zip"; - md5 = "898166bb2aaececc8238ad4ee4826793"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_ofsp = buildPythonPackage rec { - name = "Products.OFSP-2.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.OFSP/${name}.zip"; - md5 = "c76d40928753c2ee56db873304e65bd5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_passwordresettool = buildPythonPackage rec { - name = "Products.PasswordResetTool-2.0.11"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PasswordResetTool/${name}.zip"; - md5 = "8dfd65f06c3f4a4b0742d1b44b65f014"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_placelesstranslationservice = buildPythonPackage rec { - name = "Products.PlacelessTranslationService-2.0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PlacelessTranslationService/${name}.zip"; - md5 = "a94635eb712563c5a002520713f5d6dc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonelanguagetool = buildPythonPackage rec { - name = "Products.PloneLanguageTool-3.2.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PloneLanguageTool/${name}.zip"; - md5 = "bd9eb6278bf76e8cbce99437ca362164"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonepas = buildPythonPackage rec { - name = "Products.PlonePAS-4.0.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PlonePAS/${name}.zip"; - md5 = "c19241b558c994ff280a2e1f50aa1f19"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_plonetestcase = buildPythonPackage rec { - name = "Products.PloneTestCase-0.9.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PloneTestCase/${name}.zip"; - md5 = "ddd5810937919ab5233ebd64893c8bae"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_pluggableauthservice = buildPythonPackage rec { - name = "Products.PluggableAuthService-1.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PluggableAuthService/${name}.tar.gz"; - md5 = "f78f16e46d016c2848bc84254fa66596"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_pluginregistry = buildPythonPackage rec { - name = "Products.PluginRegistry-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PluginRegistry/${name}.tar.gz"; - md5 = "5b166193ca1eb84dfb402051f779ebab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_portaltransforms = buildPythonPackage rec { - name = "Products.PortalTransforms-2.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PortalTransforms/${name}.zip"; - md5 = "9f429f3c3b9e0019d0f6c9b7a8a9376e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - products_pythonscripts = buildPythonPackage rec { name = "Products.PythonScripts-2.13.2"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.PythonScripts/${name}.zip"; + url = "http://pypi.python.org/packages/source/P/Products.PythonScripts/Products.PythonScripts-2.13.2.zip"; md5 = "04c86f2c45a29a162297a80dac61d14f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ accesscontrol datetime restrictedpython documenttemplate setuptools zexceptions acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_resourceregistries = buildPythonPackage rec { - name = "Products.ResourceRegistries-2.2.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ResourceRegistries/${name}.zip"; - md5 = "9cf6efbcf2a6510033c06e1d3af94080"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zopeundo = buildPythonPackage rec { + name = "ZopeUndo-2.12.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZopeUndo/ZopeUndo-2.12.0.zip"; + md5 = "2b8da09d1b98d5558f62e12f6e52c401"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_securemailhost = buildPythonPackage rec { - name = "Products.SecureMailHost-1.1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.SecureMailHost/${name}.zip"; - md5 = "7db0f1fa867bd0df972082f502a7a707"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + datetime = buildPythonPackage rec { + name = "DateTime-3.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/D/DateTime/DateTime-3.0.2.zip"; + md5 = "d2dce6ce3b8d93bc65713e40b5d89ae0"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface pytz ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_standardcachemanagers = buildPythonPackage rec { - name = "Products.StandardCacheManagers-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.StandardCacheManagers/${name}.zip"; - md5 = "c5088b2b62bd26d63d9579a04369cb73"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_session = buildPythonPackage rec { + name = "plone.session-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.session/plone.session-3.5.3.zip"; + md5 = "f95872454735abc8f27c3dcbc9434c11"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 products_pluggableauthservice plone_keyring zope_interface setuptools zope_component plone_protect ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_statusmessages = buildPythonPackage rec { - name = "Products.statusmessages-4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.statusmessages/${name}.zip"; - md5 = "265324b0a58a032dd0ed038103ed0473"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_container = buildPythonPackage rec { + name = "zope.container-3.11.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.container/zope.container-3.11.2.tar.gz"; + md5 = "fc66d85a17b8ffb701091c9328983dcc"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_filerepresentation zope_i18nmessageid zope_publisher zope_broken zope_interface zope_size zope_dottedname zope_security zope_location zope_lifecycleevent zope_component zodb3 zope_event setuptools zope_schema zope_traversing ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_folder = buildPythonPackage rec { + name = "plone.folder-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.folder/plone.folder-1.0.4.zip"; + md5 = "1674ff18b7a9452d0c2063cf11c679b7"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component zope_interface plone_memoize zope_container setuptools zope_annotation ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_tinymce = buildPythonPackage rec { - name = "Products.TinyMCE-1.2.15"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.TinyMCE/${name}.zip"; - md5 = "108b919bfcff711d2116e41eccbede58"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + products_plonepas = buildPythonPackage rec { + name = "Products.PlonePAS-4.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PlonePAS/Products.PlonePAS-4.1.1.zip"; + md5 = "32db1808c3ad42e82542b65eb95c3c71"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_genericsetup plone_memoize plone_i18n plone_session zope2 setuptools products_cmfcore products_pluggableauthservice ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_validation = buildPythonPackage rec { - name = "Products.validation-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.validation/${name}.zip"; - md5 = "afa217e2306637d1dccbebf337caa8bf"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_app_locales = buildPythonPackage rec { + name = "plone.app.locales-4.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.locales/plone.app.locales-4.2.5.zip"; + md5 = "baf48a0a5278a18fa1c2848d3470464f"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zcatalog = buildPythonPackage rec { - name = "Products.ZCatalog-2.13.23"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZCatalog/${name}.zip"; - md5 = "d425171516dfc70e543a4e2b852301cb"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_sequencesort = buildPythonPackage rec { + name = "zope.sequencesort-3.4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.sequencesort/zope.sequencesort-3.4.0.tar.gz"; + md5 = "cfc35fc426a47f5c0ee43c416224b864"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_genericsetup = buildPythonPackage rec { + name = "Products.GenericSetup-1.7.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.GenericSetup/Products.GenericSetup-1.7.3.tar.gz"; + md5 = "c48967c81c880ed33ee16a14caab3b11"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_formlib five_localsitemanager zope2 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_theme = buildPythonPackage rec { + name = "plone.theme-2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.theme/plone.theme-2.1.zip"; + md5 = "c592d0d095e9fc76cc81597cdf6d0c37"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_publisher zope_interface zope_traversing zope_component products_cmfdefault setuptools products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zctextindex = buildPythonPackage rec { - name = "Products.ZCTextIndex-2.13.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZCTextIndex/${name}.zip"; - md5 = "8bbfa5fcd3609246990a9314d6f826b4"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + zope_tal = buildPythonPackage rec { + name = "zope.tal-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.tal/zope.tal-3.5.2.zip"; + md5 = "13869f292ba36b294736b7330b1396fd"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zopeversioncontrol = buildPythonPackage rec { - name = "Products.ZopeVersionControl-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZopeVersionControl/${name}.zip"; - md5 = "238239102f3ac798ee4f4c53343a561f"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_cachepurging = buildPythonPackage rec { + name = "plone.cachepurging-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.cachepurging/plone.cachepurging-1.0.4.zip"; + md5 = "886814ac4deef0f1ed99a2eb60864264"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope2 five_globalrequest zope_interface zope_component zope_event setuptools zope_lifecycleevent zope_annotation plone_registry ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - products_zsqlmethods = buildPythonPackage rec { - name = "Products.ZSQLMethods-2.13.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Products.ZSQLMethods/${name}.zip"; - md5 = "bd1ad8fd4a9d4f8b4681401dd5b71dc1"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_protect = buildPythonPackage rec { + name = "plone.protect-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.protect/plone.protect-2.0.2.zip"; + md5 = "74925ffb08782e72f9b1e850fa78fffa"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component plone_keyring zope2 setuptools zope_interface ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - py = buildPythonPackage rec { - name = "py-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/py/${name}.tar.gz"; - md5 = "b64d73a04121c1c4e27c7ec335ef87c8"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - pygments = buildPythonPackage rec { - name = "Pygments-1.3.1"; - + products_portaltransforms = buildPythonPackage rec { + name = "Products.PortalTransforms-2.1.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; - md5 = "54be67c04834f13d7e255e1797d629a5"; + url = "http://pypi.python.org/packages/source/P/Products.PortalTransforms/Products.PortalTransforms-2.1.2.zip"; + md5 = "9f429f3c3b9e0019d0f6c9b7a8a9376e"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_dateutil = buildPythonPackage rec { - name = "python-dateutil-1.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-dateutil/${name}.tar.gz"; - md5 = "0dcb1de5e5cad69490a3b6ab63f0cfa5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_gettext = buildPythonPackage rec { - name = "python-gettext-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-gettext/${name}.zip"; - md5 = "cd4201d440126d1296d1d2bc2b4795f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_interface zope_structuredtext products_mimetypesregistry zodb3 products_cmfdefault plone_intelligenttext setuptools markdown products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - python_openid = buildPythonPackage rec { - name = "python-openid-2.2.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-openid/${name}.zip"; - md5 = "f89d9d4f4dccfd33b5ce34eb4725f751"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_memoize = buildPythonPackage rec { + name = "plone.memoize-1.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.memoize/plone.memoize-1.1.1.zip"; + md5 = "d07cd14b976160e1f26a859e3370147e"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_component zope_annotation zope_ramcache setuptools zope_interface ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - pytz = buildPythonPackage rec { - name = "pytz-2012c"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/pytz/pytz-2012c.tar.gz"; - md5 = "1aa85f072e3d34ae310665967a0ce053"; - }; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - record = buildPythonPackage rec { - name = "Record-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/R/Record/${name}.zip"; - md5 = "cfed6a89d4fb2c9cb995e9084c3071b7"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + docutils = buildPythonPackage rec { + name = "docutils-0.9.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/d/docutils/docutils-0.9.1.tar.gz"; + md5 = "b0d5cd5298fedf9c62f5fd364a274d56"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_formlib = buildPythonPackage rec { + name = "five.formlib-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.formlib/five.formlib-1.0.4.zip"; + md5 = "09fcecbb7e0ed4a31a4f19787c1a78b4"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid transaction zope_app_form zope_formlib zope_interface zope_location zope_publisher zope_component extensionclass zope_event setuptools zope_schema zope_lifecycleevent zope_browser zope2 ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_retry = buildPythonPackage rec { - name = "repoze.retry-1.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.retry/${name}.tar.gz"; - md5 = "55f9dbde5d7f939d93c352fef0f2ce8b"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - repoze_tm2 = buildPythonPackage rec { - name = "repoze.tm2-1.0"; - + zexceptions = buildPythonPackage rec { + name = "zExceptions-2.13.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.tm2/${name}.tar.gz"; - md5 = "c645a878874c8876c9c6b3467246afbc"; + url = "http://pypi.python.org/packages/source/z/zExceptions/zExceptions-2.13.0.zip"; + md5 = "4c679696c959040d8e656ef85ae40136"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_who = buildPythonPackage rec { - name = "repoze.who-2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.who/${name}.tar.gz"; - md5 = "eab01991b6a2979678ce6015815262e2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - repoze_xmliter = buildPythonPackage rec { - name = "repoze.xmliter-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.xmliter/${name}.zip"; - md5 = "99da76bcbad6fbaced4a273bde29b10e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_interface zope_publisher zope_security setuptools ]; doCheck = false; - + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + products_cmfuid = buildPythonPackage rec { + name = "Products.CMFUid-2.2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFUid/Products.CMFUid-2.2.1.tar.gz"; + md5 = "e20727959351dffbf0bac80613eee110"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; restrictedpython = buildPythonPackage rec { name = "RestrictedPython-3.6.0"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/R/RestrictedPython/${name}.zip"; + url = "http://pypi.python.org/packages/source/R/RestrictedPython/RestrictedPython-3.6.0.zip"; md5 = "aa75a7dcc7fbc966357837cc66cacec6"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - roman = buildPythonPackage rec { - name = "roman-1.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/r/roman/${name}.tar.gz"; - md5 = "4f8832ed4108174b159c2afb4bd1d1dd"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - rwproperty = buildPythonPackage rec { - name = "rwproperty-1.0"; - + plone_app_theming = buildPythonPackage rec { + name = "plone.app.theming-1.1b2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/r/rwproperty/${name}.tar.gz"; - md5 = "050bdf066492b3cd82a3399f8efea6b1"; + url = "http://pypi.python.org/packages/source/p/plone.app.theming/plone.app.theming-1.1b2.zip"; + md5 = "0cefd88b1c810833c03762cba7bd194d"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - simplejson = buildPythonPackage rec { - name = "simplejson-2.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/s/simplejson/${name}.tar.gz"; - md5 = "d7a7acf0bd7681bd116b5c981d2f7959"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - sphinx = buildPythonPackage rec { - name = "Sphinx-1.1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/S/Sphinx/${name}.tar.gz"; - md5 = "8f55a6d4f87fc6d528120c5d1f983e98"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - tempstorage = buildPythonPackage rec { - name = "tempstorage-2.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/t/tempstorage/${name}.zip"; - md5 = "7a2b76b39839e229249b1bb175604480"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfplone plone_subrequest repoze_xmliter plone_app_registry plone_transformchain zope_traversing lxml docutils roman plone_resource setuptools five_globalrequest diazo plone_resourceeditor ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - tl_eggdeps = buildPythonPackage rec { - name = "tl.eggdeps-0.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/t/tl.eggdeps/${name}.tar.gz"; - md5 = "2472204a2abd0d8cd4d11ff0fbf36ae7"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - transaction = buildPythonPackage rec { - name = "transaction-1.1.1"; - + feedparser = buildPythonPackage rec { + name = "feedparser-5.0.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; - md5 = "30b062baa34fe1521ad979fb088c8c55"; + url = "http://pypi.python.org/packages/source/f/feedparser/feedparser-5.0.1.zip"; + md5 = "cefffeba66b658d3cc7c1d66b92c6a1a"; }; - - # ignore dependencies + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + zope_browser = buildPythonPackage rec { + name = "zope.browser-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browser/zope.browser-1.3.zip"; + md5 = "4ff0ddbf64c45bfcc3189e35f4214ded"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdefault = buildPythonPackage rec { + name = "Products.CMFDefault-2.2.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDefault/Products.CMFDefault-2.2.3.tar.gz"; + md5 = "fe7d2d3906ee0e3b484e4a02401576ab"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_genericsetup products_cmfcore five_formlib setuptools zope2 eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_dateutil = buildPythonPackage rec { + name = "python-dateutil-1.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-1.5.tar.gz"; + md5 = "0dcb1de5e5cad69490a3b6ab63f0cfa5"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_error = buildPythonPackage rec { + name = "zope.error-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.error/zope.error-3.7.4.tar.gz"; + md5 = "281445a906458ff5f18f56923699a127"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_location zope_exceptions setuptools zodb3 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mimetools = buildPythonPackage rec { + name = "Products.MIMETools-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MIMETools/Products.MIMETools-2.13.0.zip"; + md5 = "ad5372fc1190599a19493db0864448ec"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ documenttemplate setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_deprecation = buildPythonPackage rec { + name = "zope.deprecation-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.deprecation/zope.deprecation-3.4.1.tar.gz"; + md5 = "8a47b0f8e1fa4e833007e5b8351bb1d4"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfplacefulworkflow = buildPythonPackage rec { + name = "Products.CMFPlacefulWorkflow-1.5.9"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFPlacefulWorkflow/Products.CMFPlacefulWorkflow-1.5.9.zip"; + md5 = "9041e1f52eab5b348c0dfa85be438722"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone zope_i18nmessageid products_plonetestcase products_genericsetup zope_interface zope_testing zope_component setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; unidecode = buildPythonPackage rec { name = "Unidecode-0.04.1"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/U/Unidecode/${name}2.tar.gz"; - md5 = "351dc98f4512bdd2e93f7a6c498730eb"; + url = "http://pypi.python.org/packages/source/U/Unidecode/Unidecode-0.04.1.tar.gz"; + md5 = "c4c9ed8d40cff25c390ff5d5112b9308"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - unittest2 = buildPythonPackage rec { - name = "unittest2-0.5.1"; - + products_cmfcore = buildPythonPackage rec { + name = "Products.CMFCore-2.2.7"; src = fetchurl { - url = "http://pypi.python.org/packages/source/u/unittest2/${name}.tar.gz"; - md5 = "a0af5cac92bbbfa0c3b0e99571390e0f"; + url = "http://pypi.python.org/packages/source/P/Products.CMFCore/Products.CMFCore-2.2.7.tar.gz"; + md5 = "9320a4023b8575097feacfd4a400e930"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ products_genericsetup zope_app_publication products_zsqlmethods zope2 setuptools five_localsitemanager ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - webob = buildPythonPackage rec { - name = "WebOb-1.0.8"; - + five_localsitemanager = buildPythonPackage rec { + name = "five.localsitemanager-2.0.5"; src = fetchurl { - url = "http://pypi.python.org/packages/source/W/WebOb/${name}.zip"; - md5 = "9809f9fb64fca8690a7da533fa29a272"; + url = "http://pypi.python.org/packages/source/f/five.localsitemanager/five.localsitemanager-2.0.5.zip"; + md5 = "5e3a658e6068832bd802018ebc83f2d4"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_testing zope_site zope_interface zope_location zope_component zodb3 zope_event setuptools zope_lifecycleevent zope2 acquisition ]; doCheck = false; - + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + zope_configuration = buildPythonPackage rec { + name = "zope.configuration-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.configuration/zope.configuration-3.7.4.zip"; + md5 = "5b0271908ef26c05059eda76928896ea"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfcalendar = buildPythonPackage rec { + name = "Products.CMFCalendar-2.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFCalendar/Products.CMFCalendar-2.2.2.tar.gz"; + md5 = "49458e68dc3b6826ea9a3576ac014419"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_cmfdefault zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_extendedpathindex = buildPythonPackage rec { + name = "Products.ExtendedPathIndex-3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExtendedPathIndex/Products.ExtendedPathIndex-3.1.zip"; + md5 = "00c048a4b103200bdcbda61fa22c66df"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol transaction zope2 setuptools zodb3 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_schemaextender = buildPythonPackage rec { + name = "archetypes.schemaextender-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.schemaextender/archetypes.schemaextender-2.1.2.zip"; + md5 = "865aa5b4b6b26e3bb650d89ddfe77c87"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_uuid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zconfig = buildPythonPackage rec { + name = "ZConfig-2.9.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-2.9.0.zip"; + md5 = "5c932690a70c8907efd240cdd76a7bc4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentmenu = buildPythonPackage rec { + name = "plone.app.contentmenu-2.0.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentmenu/plone.app.contentmenu-2.0.8.zip"; + md5 = "8ba463f1a164c454c70d26507e5bd22a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_publisher products_cmfdynamicviewfti zope_browsermenu zope_interface plone_memoize plone_app_content zope_component acquisition setuptools zope_i18n plone_locking products_cmfcore zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_pluginregistry = buildPythonPackage rec { + name = "Products.PluginRegistry-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PluginRegistry/Products.PluginRegistry-1.3.tar.gz"; + md5 = "5b166193ca1eb84dfb402051f779ebab"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope2 products_genericsetup setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_alterego = buildPythonPackage rec { + name = "plone.alterego-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.alterego/plone.alterego-1.0.zip"; + md5 = "b7b6dbcbba00505d98d5aba83e016408"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_outputfilters = buildPythonPackage rec { + name = "plone.outputfilters-1.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.outputfilters/plone.outputfilters-1.8.zip"; + md5 = "a5ef28580f7fa7f2dc1768893995b0f7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_portaltransforms products_mimetypesregistry products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_publisher = buildPythonPackage rec { + name = "zope.publisher-3.12.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.publisher/zope.publisher-3.12.6.tar.gz"; + md5 = "495131970cc7cb14de8e517fb3857ade"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_contenttype zope_proxy zope_interface zope_location zope_exceptions zope_security zope_configuration zope_component zope_event setuptools zope_browser zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_security = buildPythonPackage rec { + name = "zope.security-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.security/zope.security-3.7.4.tar.gz"; + md5 = "072ab8d11adc083eace11262da08630c"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_schema zope_interface zope_location zope_configuration zope_component setuptools zope_proxy ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zdaemon = buildPythonPackage rec { + name = "zdaemon-2.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zdaemon/zdaemon-2.0.7.tar.gz"; + md5 = "291a875f82e812110557eb6704af8afe"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zconfig ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_annotation = buildPythonPackage rec { + name = "zope.annotation-3.5.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.annotation/zope.annotation-3.5.0.tar.gz"; + md5 = "4238153279d3f30ab5613438c8e76380"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_proxy zope_interface zope_location zope_component zodb3 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + repoze_xmliter = buildPythonPackage rec { + name = "repoze.xmliter-0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/r/repoze.xmliter/repoze.xmliter-0.5.zip"; + md5 = "99da76bcbad6fbaced4a273bde29b10e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_form = buildPythonPackage rec { + name = "plone.app.form-2.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.form/plone.app.form-2.2.2.zip"; + md5 = "6101e6a5bd4de6cc8cdef09ced2743eb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_schema zope_site plone_app_vocabularies zope2 datetime zope_component zope_event five_formlib setuptools zope_interface zope_lifecycleevent zope_formlib zope_browser zope_i18n plone_locking products_cmfcore acquisition products_cmfdefault ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_structuredtext = buildPythonPackage rec { + name = "zope.structuredtext-3.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.structuredtext/zope.structuredtext-3.5.1.tar.gz"; + md5 = "eabbfb983485d0879322bc878d2478a0"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zodb3 = buildPythonPackage rec { + name = "ZODB3-3.10.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-3.10.5.tar.gz"; + md5 = "6f180c6897a1820948fee2a6290503cd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface transaction zconfig zope_event zdaemon zc_lockfile ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_batching = buildPythonPackage rec { + name = "plone.batching-1.0b1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.batching/plone.batching-1.0b1.zip"; + md5 = "813a7d2d89fedf4f8e90e0c8da949c48"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + documenttemplate = buildPythonPackage rec { + name = "DocumentTemplate-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/D/DocumentTemplate/DocumentTemplate-2.13.2.zip"; + md5 = "07bb086c77c1dfe94125ad2efbba94b7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol extensionclass zope_sequencesort zexceptions restrictedpython zope_structuredtext acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_search = buildPythonPackage rec { + name = "plone.app.search-1.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.search/plone.app.search-1.1.3.zip"; + md5 = "396677c3fba762077360ed97b14071e6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_contentlisting setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + diazo = buildPythonPackage rec { + name = "diazo-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/d/diazo/diazo-1.0.3.zip"; + md5 = "d3c2b017af521db4c86fb360c86e0bc8"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml experimental_cssselect setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_globalrequest = buildPythonPackage rec { + name = "zope.globalrequest-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.globalrequest/zope.globalrequest-1.0.zip"; + md5 = "ae6ff02db5ba89c1fb96ed7a73ca1cfa"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_customerize = buildPythonPackage rec { + name = "plone.app.customerize-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.customerize/plone.app.customerize-1.2.2.zip"; + md5 = "6a3802c4e8fbd955597adc6a8298febf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_viewlet zope2 zope_publisher zope_interface plone_browserlayer plone_portlets zope_component setuptools five_customerize products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdifftool = buildPythonPackage rec { + name = "Products.CMFDiffTool-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDiffTool/Products.CMFDiffTool-2.0.2.zip"; + md5 = "c12ba4fb9912a9a5a046b07b5b1cf69d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_interface setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_testbrowser = buildPythonPackage rec { + name = "zope.testbrowser-3.11.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testbrowser/zope.testbrowser-3.11.1.tar.gz"; + md5 = "64abbee892121e7f1a91aed12cfc155a"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface mechanize pytz setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_contentmigration = buildPythonPackage rec { + name = "Products.contentmigration-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.contentmigration/Products.contentmigration-2.1.3.zip"; + md5 = "e15b9777593157f060b50638b0253be1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_intelligenttext = buildPythonPackage rec { + name = "plone.intelligenttext-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.intelligenttext/plone.intelligenttext-2.0.2.zip"; + md5 = "51688fa0815b49e00334e3ef948328ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plonetheme_classic = buildPythonPackage rec { + name = "plonetheme.classic-1.3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plonetheme.classic/plonetheme.classic-1.3.1.zip"; + md5 = "8f78a3e79dce692a568c5fbc58ba742a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_authentication = buildPythonPackage rec { + name = "zope.authentication-3.7.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.authentication/zope.authentication-3.7.1.zip"; + md5 = "7d6bb340610518f2fc71213cfeccda68"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_security zope_component setuptools zope_schema zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_i18n = buildPythonPackage rec { + name = "zope.i18n-3.7.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.i18n/zope.i18n-3.7.4.tar.gz"; + md5 = "a6fe9d9ad53dd7e94e87cd58fb67d3b7"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_component zope_i18nmessageid pytz setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_componentvocabulary = buildPythonPackage rec { + name = "zope.componentvocabulary-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.componentvocabulary/zope.componentvocabulary-1.0.1.tar.gz"; + md5 = "1c8fa82ca1ab1f4b0bd2455a31fde22b"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_security zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_ofsp = buildPythonPackage rec { + name = "Products.OFSP-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.OFSP/Products.OFSP-2.13.2.zip"; + md5 = "c76d40928753c2ee56db873304e65bd5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol persistence setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_datetime = buildPythonPackage rec { + name = "zope.datetime-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.datetime/zope.datetime-3.4.1.tar.gz"; + md5 = "4dde22d34f41a0a4f0c5a345e6d11ee9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + experimental_cssselect = buildPythonPackage rec { + name = "experimental.cssselect-0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/e/experimental.cssselect/experimental.cssselect-0.3.zip"; + md5 = "3fecdcf1fbc3ea6025e115a56a262957"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_passwordresettool = buildPythonPackage rec { + name = "Products.PasswordResetTool-2.0.12"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PasswordResetTool/Products.PasswordResetTool-2.0.12.zip"; + md5 = "db87c166732a5800f25e33f27a23b7b4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface plone_memoize datetime zope_component setuptools zope_i18n products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_jquerytools = buildPythonPackage rec { + name = "plone.app.jquerytools-1.5.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.jquerytools/plone.app.jquerytools-1.5.4.zip"; + md5 = "fcc0c48d49deb211d5aadf4e12d3c1a0"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_component zope2 products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_validation = buildPythonPackage rec { + name = "Products.validation-2.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.validation/Products.validation-2.0.zip"; + md5 = "afa217e2306637d1dccbebf337caa8bf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface datetime setuptools zope_i18n acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_registry = buildPythonPackage rec { + name = "plone.registry-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.registry/plone.registry-1.0.1.zip"; + md5 = "6be3d2ec7e2d170e29b8c0bc65049aff"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zope_interface zope_dottedname zope_component zodb3 zope_event setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlet_static = buildPythonPackage rec { + name = "plone.portlet.static-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlet.static/plone.portlet.static-2.0.2.zip"; + md5 = "ec0dc691b4191a41ff97779b117f9985"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 plone_app_portlets zope_formlib zope_interface setuptools plone_i18n plone_portlets zope_component plone_app_form zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_viewlet = buildPythonPackage rec { + name = "zope.viewlet-3.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.viewlet/zope.viewlet-3.7.2.tar.gz"; + md5 = "367e03096df57e2f9b74fff43f7901f9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_browserpage zope_i18nmessageid zope_publisher zope_interface zope_location zope_security zope_configuration zope_component zope_event setuptools zope_schema zope_traversing zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlet_collection = buildPythonPackage rec { + name = "plone.portlet.collection-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlet.collection/plone.portlet.collection-2.1.3.zip"; + md5 = "5f0006dbb3e0b56870383dfdedc49228"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_memoize setuptools plone_app_vocabularies plone_app_form plone_portlets plone_app_portlets ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_users = buildPythonPackage rec { + name = "plone.app.users-1.2a2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.users/plone.app.users-1.2a2.zip"; + md5 = "a96e42e34d97162363cb3bbc8483d2ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid setuptools zope_site zope_formlib zope_interface plone_app_controlpanel plone_app_layout zope2 zope_component products_statusmessages products_cmfdefault five_formlib plone_protect zodb3 zope_schema products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_querystring = buildPythonPackage rec { + name = "plone.app.querystring-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.querystring/plone.app.querystring-1.0.7.zip"; + md5 = "b501910b23def9b58e8309d1e469eb6f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_i18n zope_publisher setuptools zope_globalrequest plone_app_vocabularies zope_dottedname plone_app_layout datetime plone_registry zope_component plone_app_contentlisting zope_interface zope_schema plone_app_registry products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_i18nmessageid = buildPythonPackage rec { + name = "zope.i18nmessageid-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.i18nmessageid/zope.i18nmessageid-3.5.3.tar.gz"; + md5 = "cb84bf61c2b7353e3b7578057fbaa264"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_folder = buildPythonPackage rec { + name = "plone.app.folder-1.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.folder/plone.app.folder-1.0.5.zip"; + md5 = "8ea860daddb4c93c0b7f2b5f7106fef0"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_folder setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zcatalog = buildPythonPackage rec { + name = "Products.ZCatalog-2.13.23"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZCatalog/Products.ZCatalog-2.13.23.zip"; + md5 = "d425171516dfc70e543a4e2b852301cb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol zope_testing extensionclass missing zope_dottedname restrictedpython datetime record persistence zodb3 documenttemplate setuptools zope_interface zope_schema products_zctextindex zexceptions acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_openid = buildPythonPackage rec { + name = "python-openid-2.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-openid/python-openid-2.2.5.zip"; + md5 = "f89d9d4f4dccfd33b5ce34eb4725f751"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_autoinclude = buildPythonPackage rec { + name = "z3c.autoinclude-0.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.autoinclude/z3c.autoinclude-0.3.4.zip"; + md5 = "6a615ae18c12b459bceb3ae28e8e7709"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_dottedname zope_configuration zc_buildout setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_processlifetime = buildPythonPackage rec { + name = "zope.processlifetime-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.processlifetime/zope.processlifetime-1.0.tar.gz"; + md5 = "69604bfd668a01ebebdd616a8f26ccfe"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_uuid = buildPythonPackage rec { + name = "plone.uuid-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.uuid/plone.uuid-1.0.3.zip"; + md5 = "183fe2911a7d6c9f6b3103855e98ad8a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_browserpage zope_publisher setuptools zope_lifecycleevent ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_dexterity = buildPythonPackage rec { + name = "plone.dexterity-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.dexterity/plone.dexterity-2.1.2.zip"; + md5 = "3404947376be89f18e54bbfb5c0d3595"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface plone_memoize zope_dottedname zope_container zope_lifecycleevent plone_synchronize zope_annotation plone_autoform plone_behavior plone_folder zope_publisher products_cmfdefault zope_filerepresentation zope_browser plone_rfc822 zope_size plone_alterego products_statusmessages zope_schema zope2 zope_component zope_location zope_security plone_z3cform zodb3 plone_supermodel plone_uuid setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_synchronize = buildPythonPackage rec { + name = "plone.synchronize-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.synchronize/plone.synchronize-1.0.1.zip"; + md5 = "d25e86ace8daa0816861296c3288c4fb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_traversing = buildPythonPackage rec { + name = "zope.traversing-3.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.traversing/zope.traversing-3.13.2.zip"; + md5 = "eaad8fc7bbef126f9f8616b074ec00aa"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_proxy zope_location zope_interface zope_security zope_component setuptools zope_publisher zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + python_gettext = buildPythonPackage rec { + name = "python-gettext-1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/python-gettext/python-gettext-1.2.zip"; + md5 = "cd4201d440126d1296d1d2bc2b4795f3"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ unittest2 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_securemailhost = buildPythonPackage rec { + name = "Products.SecureMailHost-1.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.SecureMailHost/Products.SecureMailHost-1.1.2.zip"; + md5 = "7db0f1fa867bd0df972082f502a7a707"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_plonelanguagetool = buildPythonPackage rec { + name = "Products.PloneLanguageTool-3.2.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PloneLanguageTool/Products.PloneLanguageTool-3.2.7.zip"; + md5 = "bd9eb6278bf76e8cbce99437ca362164"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + eggtestinfo = buildPythonPackage rec { + name = "eggtestinfo-0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/e/eggtestinfo/eggtestinfo-0.3.tar.gz"; + md5 = "6f0507aee05f00c640c0d64b5073f840"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + mailinglogger = buildPythonPackage rec { + name = "mailinglogger-3.7.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/mailinglogger/mailinglogger-3.7.0.tar.gz"; + md5 = "f865f0df6059ce23062b7457d01dbac5"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + missing = buildPythonPackage rec { + name = "Missing-2.13.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/Missing/Missing-2.13.1.zip"; + md5 = "9823cff54444cbbcaef8fc45d8e42572"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_deferredimport = buildPythonPackage rec { + name = "zope.deferredimport-3.5.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.deferredimport/zope.deferredimport-3.5.3.tar.gz"; + md5 = "68fce3bf4f011d4a840902fd763884ee"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_proxy setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_tales = buildPythonPackage rec { + name = "zope.tales-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.tales/zope.tales-3.5.2.tar.gz"; + md5 = "1c5060bd766a0a18632b7879fc9e4e1e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools zope_tal ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zsqlmethods = buildPythonPackage rec { + name = "Products.ZSQLMethods-2.13.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZSQLMethods/Products.ZSQLMethods-2.13.4.zip"; + md5 = "bd1ad8fd4a9d4f8b4681401dd5b71dc1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass missing zope_interface datetime zope2 record transaction acquisition setuptools zodb3 persistence ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_statusmessages = buildPythonPackage rec { + name = "Products.statusmessages-4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.statusmessages/Products.statusmessages-4.0.zip"; + md5 = "265324b0a58a032dd0ed038103ed0473"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_annotation zope_i18n setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_i18n = buildPythonPackage rec { + name = "plone.i18n-2.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.i18n/plone.i18n-2.0.5.zip"; + md5 = "ef36aa9a294d507abb37787f9f7700bd"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ unidecode zope_publisher zope_interface zope_component setuptools zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_querywidget = buildPythonPackage rec { + name = "archetypes.querywidget-1.0.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.querywidget/archetypes.querywidget-1.0.8.zip"; + md5 = "3416b6b4948c624e1b5b8dd8d7e33f59"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_jquerytools plone_app_querystring setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_transformchain = buildPythonPackage rec { + name = "plone.transformchain-1.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.transformchain/plone.transformchain-1.0.3.zip"; + md5 = "f5fb7ca894249e3e666501c4fae52a6c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_pluggableauthservice = buildPythonPackage rec { + name = "Products.PluggableAuthService-1.10.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PluggableAuthService/Products.PluggableAuthService-1.10.0.tar.gz"; + md5 = "1a1db6b1d9dd34f8b93a8a3104385a37"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_pluginregistry zope2 products_genericsetup setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + borg_localrole = buildPythonPackage rec { + name = "borg.localrole-3.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/b/borg.localrole/borg.localrole-3.0.2.zip"; + md5 = "04082694dfda9ae5cda62747b8ac7ccf"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_deferredimport zope_interface plone_memoize zope_component setuptools products_pluggableauthservice zope_annotation products_cmfcore acquisition products_plonepas ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + archetypes_referencebrowserwidget = buildPythonPackage rec { + name = "archetypes.referencebrowserwidget-2.4.17"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/a/archetypes.referencebrowserwidget/archetypes.referencebrowserwidget-2.4.17.zip"; + md5 = "bb7552f5ccfddcd068649d7b8162020c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_jquerytools zope_component zope_interface plone_app_form zope_formlib setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_globalrequest = buildPythonPackage rec { + name = "five.globalrequest-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.globalrequest/five.globalrequest-1.0.tar.gz"; + md5 = "87f8996bd21d4aa156aa26e7d21b8744"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_globalrequest zope2 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_rfc822 = buildPythonPackage rec { + name = "plone.rfc822-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.rfc822/plone.rfc822-1.0.1.zip"; + md5 = "b5b79bb5a9181da624a7e88940a45424"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_component python_dateutil setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plonetheme_sunburst = buildPythonPackage rec { + name = "plonetheme.sunburst-1.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plonetheme.sunburst/plonetheme.sunburst-1.4.1.zip"; + md5 = "e2008dae3dad458dd7bf3be10e95160b"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_portlets = buildPythonPackage rec { + name = "plone.portlets-2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.portlets/plone.portlets-2.2.zip"; + md5 = "5b7e06bee6e40af83694b82e1fee8c2d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_publisher zope_site zope_container zope_interface plone_memoize zope_component zodb3 setuptools zope_schema zope_annotation zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_proxy = buildPythonPackage rec { + name = "zope.proxy-3.6.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.proxy/zope.proxy-3.6.1.zip"; + md5 = "a400b0a26624b17fa889dbcaa989d440"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_archetypes = buildPythonPackage rec { + name = "Products.Archetypes-1.8.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.Archetypes/Products.Archetypes-1.8.6.zip"; + md5 = "74be68879b27228c084a9be869132a98"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfformcontroller zope_interface zope_contenttype datetime zope_component products_mimetypesregistry plone_app_folder zope2 zope_lifecycleevent zope_i18nmessageid zope_publisher products_genericsetup products_validation products_portaltransforms products_cmfquickinstallertool products_placelesstranslationservice zope_event acquisition products_dcworkflow products_cmfdefault zope_tal plone_folder products_zsqlmethods products_statusmessages zope_schema zope_viewlet products_cmfcalendar extensionclass zope_datetime products_marshall zope_site zope_deferredimport zodb3 plone_uuid setuptools transaction zope_i18n products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + initgroups = buildPythonPackage rec { + name = "initgroups-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/i/initgroups/initgroups-2.13.0.zip"; + md5 = "38e842dcab8445f65e701fec75213acd"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_schema = buildPythonPackage rec { + name = "zope.schema-4.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.schema/zope.schema-4.2.2.tar.gz"; + md5 = "e7e581af8193551831560a736a53cf58"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_scale = buildPythonPackage rec { + name = "plone.scale-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.scale/plone.scale-1.3.zip"; + md5 = "2de525b3f436c851bce6e03f639d2d35"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_copy = buildPythonPackage rec { + name = "zope.copy-3.5.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.copy/zope.copy-3.5.0.tar.gz"; + md5 = "a9836a5d36cd548be45210eb00407337"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + roman = buildPythonPackage rec { + name = "roman-1.4.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/r/roman/roman-1.4.0.tar.gz"; + md5 = "4f8832ed4108174b159c2afb4bd1d1dd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_event = buildPythonPackage rec { + name = "zope.event-3.5.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.event/zope.event-3.5.2.tar.gz"; + md5 = "6e8af2a16157a74885d4f0d88137cefb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + acquisition = buildPythonPackage rec { + name = "Acquisition-2.13.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/A/Acquisition/Acquisition-2.13.8.zip"; + md5 = "8c33160c157b50649e2b2b3224622579"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_resource = buildPythonPackage rec { + name = "plone.resource-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.resource/plone.resource-1.0.2.zip"; + md5 = "594d41e3acd913ae92f2e9ef96503b9f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ python_dateutil zope_filerepresentation zope2 zope_publisher z3c_caching zope_interface zope_traversing zope_configuration zope_component plone_caching setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_linkintegrity = buildPythonPackage rec { + name = "plone.app.linkintegrity-1.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.linkintegrity/plone.app.linkintegrity-1.5.1.zip"; + md5 = "89701634d59c3b1a6fc61e5a21c4de52"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_resourceregistries = buildPythonPackage rec { + name = "Products.ResourceRegistries-2.2.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ResourceRegistries/Products.ResourceRegistries-2.2.7.zip"; + md5 = "954e31a168a1eb3153e2fd4e590bb9ba"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_interface datetime plone_app_registry zope_component zodb3 setuptools zope_viewlet products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_browserlayer = buildPythonPackage rec { + name = "plone.browserlayer-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.browserlayer/plone.browserlayer-2.1.2.zip"; + md5 = "bce02f4907a4f29314090c525e5fc28e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_interface zope_traversing zope_component setuptools products_genericsetup products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + markdown = buildPythonPackage rec { + name = "Markdown-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.3.zip"; + md5 = "122418893e21e91109edbf6e082f830d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_formwidget_query = buildPythonPackage rec { + name = "z3c.formwidget.query-0.9"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.formwidget.query/z3c.formwidget.query-0.9.zip"; + md5 = "d9f7960b1a5a81d8ba5241530f496522"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid z3c_form zope_interface zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_z3cform = buildPythonPackage rec { + name = "plone.app.z3cform-0.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.z3cform/plone.app.z3cform-0.7.2.zip"; + md5 = "aa8d1d45f8072ccfbfe0a608cd7144b6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 setuptools plone_z3cform zope_interface z3c_formwidget_query collective_z3cform_datetimewidget zope_component zope_browserpage plone_protect zope_traversing ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_viewletmanager = buildPythonPackage rec { + name = "plone.app.viewletmanager-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.viewletmanager/plone.app.viewletmanager-2.0.3.zip"; + md5 = "1dbc51c7664ce3e6ca4dcca1b7b86082"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 products_genericsetup zope_site zope_interface zope_component zodb3 acquisition setuptools plone_app_vocabularies zope_viewlet zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentlisting = buildPythonPackage rec { + name = "plone.app.contentlisting-1.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentlisting/plone.app.contentlisting-1.0.4.zip"; + md5 = "fa6eb45c4ffd0eb3817ad4813ca24916"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_uuid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_ramcache = buildPythonPackage rec { + name = "zope.ramcache-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.ramcache/zope.ramcache-1.0.zip"; + md5 = "87289e15f0e51f50704adda1557c02a7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_location zodb3 zope_testing setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_vocabularies = buildPythonPackage rec { + name = "plone.app.vocabularies-2.1.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.vocabularies/plone.app.vocabularies-2.1.10.tar.gz"; + md5 = "166a0d6f9a3e3cd753efa56aaef585be"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_site zope_formlib zope_interface zope_component setuptools zope_schema zope_browser zope_i18n products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_discussion = buildPythonPackage rec { + name = "plone.app.discussion-2.2.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.discussion/plone.app.discussion-2.2.4.zip"; + md5 = "e40ef3d26f024fc1555b30b52489b445"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_app_uuid zope_site plone_indexer collective_monkeypatcher zope_interface plone_app_z3cform zope_container plone_app_layout plone_z3cform plone_app_registry zope_component zodb3 zope_event setuptools z3c_form zope_lifecycleevent zope_annotation plone_registry ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zlog = buildPythonPackage rec { + name = "zLOG-2.11.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zLOG/zLOG-2.11.1.tar.gz"; + md5 = "68073679aaa79ac5a7b6a5c025467147"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zconfig ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zc_recipe_egg = buildPythonPackage rec { + name = "zc.recipe.egg-1.3.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.recipe.egg/zc.recipe.egg-1.3.2.tar.gz"; + md5 = "1cb6af73f527490dde461d3614a36475"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zc_buildout setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone = buildPythonPackage rec { + name = "Plone-4.3rc1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Plone/Plone-4.3rc1.zip"; + md5 = "21e4fafe5d608f44e759a1a0544aed72"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone plone_app_caching plone_app_dexterity plone_app_theming setuptools products_cmfplacefulworkflow plone_app_openid plone_app_iterate wicked ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_standardcachemanagers = buildPythonPackage rec { + name = "Products.StandardCacheManagers-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.StandardCacheManagers/Products.StandardCacheManagers-2.13.0.zip"; + md5 = "c5088b2b62bd26d63d9579a04369cb73"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol zope_component transaction setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_fieldsets = buildPythonPackage rec { + name = "plone.fieldsets-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.fieldsets/plone.fieldsets-2.0.2.zip"; + md5 = "4158c8a1f784fcb5cecbd63deda7222f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_formlib zope_interface zope_component five_formlib setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + collective_monkeypatcher = buildPythonPackage rec { + name = "collective.monkeypatcher-1.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/c/collective.monkeypatcher/collective.monkeypatcher-1.0.1.zip"; + md5 = "4d4f20f9b8bb84b24afadc4f56f6dc2c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_zcmlhook = buildPythonPackage rec { + name = "z3c.zcmlhook-1.0b1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.zcmlhook/z3c.zcmlhook-1.0b1.tar.gz"; + md5 = "7b6c80146f5930409eb0b355ddf3daeb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_component zope_configuration setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_recipe_zope2instance = buildPythonPackage rec { + name = "plone.recipe.zope2instance-4.2.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.recipe.zope2instance/plone.recipe.zope2instance-4.2.10.zip"; + md5 = "787fad7fa44757de74a50a91e9bcfcb5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zodb3 mailinglogger zc_buildout setuptools zope2 zc_recipe_egg ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_supermodel = buildPythonPackage rec { + name = "plone.supermodel-1.2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.supermodel/plone.supermodel-1.2.1.zip"; + md5 = "b60d1553b297d41d9e2181afe15da4f4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ lxml zope_deferredimport zope_interface zope_dottedname zope_component z3c_zcmlhook setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_registry = buildPythonPackage rec { + name = "plone.app.registry-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.registry/plone.app.registry-1.2.2.zip"; + md5 = "d4659a2c4cfb3a66cd6c7ff1ca17be7f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid lxml plone_registry products_genericsetup plone_supermodel plone_app_z3cform zope_dottedname zope_component zope2 setuptools zope_interface products_statusmessages plone_autoform products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_pagetemplate = buildPythonPackage rec { + name = "zope.pagetemplate-3.6.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.pagetemplate/zope.pagetemplate-3.6.3.zip"; + md5 = "834a4bf702c05fba1e669677b4dc871f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_interface zope_traversing zope_tales zope_security zope_component setuptools zope_tal zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfformcontroller = buildPythonPackage rec { + name = "Products.CMFFormController-3.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFFormController/Products.CMFFormController-3.0.3.zip"; + md5 = "6573df7dcb39e3b63ba22abe2acd639e"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_genericsetup zope_interface zope_tales products_cmfcore zope2 setuptools zope_structuredtext acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_openid = buildPythonPackage rec { + name = "plone.openid-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.openid/plone.openid-2.0.1.zip"; + md5 = "d4c36926a6dbefed035ed92c29329ce1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_pluggableauthservice python_openid zodb3 setuptools zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_content = buildPythonPackage rec { + name = "zope.app.content-3.5.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.content/zope.app.content-3.5.1.tar.gz"; + md5 = "0ac6a6fcb5dd6f845759f998d8e8cbb3"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface zope_componentvocabulary zope_security setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_size = buildPythonPackage rec { + name = "zope.size-3.4.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.size/zope.size-3.4.1.tar.gz"; + md5 = "55d9084dfd9dcbdb5ad2191ceb5ed03d"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mimetypesregistry = buildPythonPackage rec { + name = "Products.MimetypesRegistry-2.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MimetypesRegistry/Products.MimetypesRegistry-2.0.4.zip"; + md5 = "898166bb2aaececc8238ad4ee4826793"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_interface zope_contenttype zodb3 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_imaging = buildPythonPackage rec { + name = "plone.app.imaging-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.imaging/plone.app.imaging-1.0.7.zip"; + md5 = "27c24477bdcbcebeba6cd83419a57aa6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_scale setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_marshall = buildPythonPackage rec { + name = "Products.Marshall-2.1.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.Marshall/Products.Marshall-2.1.2.zip"; + md5 = "bde4d7f75195c1ded8371554b04d2541"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ transaction products_genericsetup zope_interface zope_contenttype datetime extensionclass plone_uuid setuptools zope2 products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_ptresource = buildPythonPackage rec { + name = "zope.ptresource-3.9.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.ptresource/zope.ptresource-3.9.0.tar.gz"; + md5 = "f4645e51c15289d3fdfb4139039e18e9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_publisher zope_pagetemplate zope_interface zope_browserresource zope_security setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + pillow = buildPythonPackage rec { + name = "Pillow-1.7.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Pillow/Pillow-1.7.7.zip"; + md5 = "0617fae88d62422b878906a3c394c687"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + configurePhase = '' sed -i "setup.py" -e 's|^FREETYPE_ROOT =.*$|FREETYPE_ROOT = _lib_include("${pkgs.freetype}")|g ; s|^JPEG_ROOT =.*$|JPEG_ROOT = _lib_include("${pkgs.libjpeg}")|g ;s|^ZLIB_ROOT =.*$|ZLIB_ROOT = _lib_include("${pkgs.zlib}")|g ;' ''; + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + multimapping = buildPythonPackage rec { + name = "MultiMapping-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/M/MultiMapping/MultiMapping-2.13.0.zip"; + md5 = "d69c5904c105b9f2f085d4103e0f0586"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_mailhost = buildPythonPackage rec { + name = "Products.MailHost-2.13.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.MailHost/Products.MailHost-2.13.1.zip"; + md5 = "1102e523435d8bf78a15b9ddb57478e1"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + pytz = buildPythonPackage rec { + name = "pytz-2012g"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/pytz/pytz-2012g.zip"; + md5 = "1a9b24da1ab6328074b48fc3d4525078"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_i18n = buildPythonPackage rec { + name = "plone.app.i18n-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.i18n/plone.app.i18n-2.0.2.zip"; + md5 = "a10026573463dfc1899bf4062cebdbf2"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_indexer = buildPythonPackage rec { + name = "plone.indexer-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.indexer/plone.indexer-1.0.2.zip"; + md5 = "538aeee1f9db78bc8c85ae1bcb0153ed"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface products_cmfcore setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_externalmethod = buildPythonPackage rec { + name = "Products.ExternalMethod-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExternalMethod/Products.ExternalMethod-2.13.0.zip"; + md5 = "15ba953ef6cb632eb571977651252ea6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol extensionclass zodb3 persistence setuptools acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_upgrade = buildPythonPackage rec { + name = "plone.app.upgrade-1.3rc1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.upgrade/plone.app.upgrade-1.3rc1.zip"; + md5 = "5132e3a77cc0288068106430136f2a49"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfformcontroller zope_interface products_cmfactionicons products_cmfeditions products_archetypes products_mimetypesregistry plone_app_folder products_cmfuid products_securemailhost zope_ramcache products_genericsetup products_cmfdifftool five_localsitemanager products_cmfquickinstallertool products_portaltransforms products_cmfdefault acquisition products_dcworkflow products_zcatalog borg_localrole products_contentmigration products_resourceregistries plone_portlets zope2 plone_app_portlets products_cmfcalendar products_plonepas transaction products_pluggableauthservice zope_site zope_component zope_location products_plonelanguagetool plone_session setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_browserpage = buildPythonPackage rec { + name = "zope.browserpage-3.12.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browserpage/zope.browserpage-3.12.2.tar.gz"; + md5 = "a543ef3cb1b42f7233b3fca23dc9ea60"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_pagetemplate zope_interface zope_traversing zope_component zope_security zope_configuration zope_publisher setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_resourceeditor = buildPythonPackage rec { + name = "plone.resourceeditor-1.0b4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.resourceeditor/plone.resourceeditor-1.0b4.zip"; + md5 = "6e419868c2ea94a322dd631a1b0b753c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_resource zope2 zope_publisher zope_interface zope_component setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_atcontenttypes = buildPythonPackage rec { + name = "Products.ATContentTypes-2.1.12"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ATContentTypes/Products.ATContentTypes-2.1.12.zip"; + md5 = "ef38ce0769a5f44e272623f8f118a669"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_interface plone_memoize datetime products_archetypes products_mimetypesregistry plone_app_folder zope2 zope_i18nmessageid zope_publisher products_genericsetup plone_i18n products_portaltransforms products_cmfdefault products_atreferencebrowserwidget zope_tal zconfig archetypes_referencebrowserwidget transaction products_validation acquisition extensionclass zope_component plone_app_layout zodb3 setuptools zope_i18n products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfeditions = buildPythonPackage rec { + name = "Products.CMFEditions-2.2.8"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFEditions/Products.CMFEditions-2.2.8.zip"; + md5 = "1806f2e17e2527fad9364670b343bd11"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid transaction products_cmfdifftool zope_copy zope_interface products_genericsetup zope_dottedname products_zopeversioncontrol datetime products_cmfuid zodb3 products_cmfcore setuptools zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_interface = buildPythonPackage rec { + name = "zope.interface-3.6.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.interface/zope.interface-3.6.7.zip"; + md5 = "9df962180fbbb54eb1875cff9fe436e5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_content = buildPythonPackage rec { + name = "plone.app.content-2.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.content/plone.app.content-2.1.zip"; + md5 = "8c8f0d5cc235fe7cb5ef9fe02b7e1c09"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_publisher zope_container plone_batching zope_interface plone_memoize plone_i18n zope_component zope_event products_cmfcore setuptools zope_schema zope_lifecycleevent zope_i18n zope_viewlet acquisition products_cmfdefault ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfquickinstallertool = buildPythonPackage rec { + name = "Products.CMFQuickInstallerTool-3.0.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFQuickInstallerTool/Products.CMFQuickInstallerTool-3.0.6.tar.gz"; + md5 = "af34adb87ddf2b6da48eff8b70ca2989"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid zope2 products_genericsetup zope_interface datetime zope_component setuptools zope_annotation products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_autoform = buildPythonPackage rec { + name = "plone.autoform-1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.autoform/plone.autoform-1.3.zip"; + md5 = "4cb2935ba9cda3eb3ee801ad8cda7c60"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form zope_interface zope_dottedname zope_security setuptools plone_supermodel zope_schema plone_z3cform ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_contentrules = buildPythonPackage rec { + name = "plone.app.contentrules-3.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.contentrules/plone.app.contentrules-3.0.zip"; + md5 = "bd60122bf527ed90e9d6fbc6a7fb3625"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_traversing plone_app_form zope_component zope_lifecycleevent zope_annotation zope_i18nmessageid products_genericsetup zope_event products_cmfdefault zope_browser plone_uuid plone_memoize zope2 plone_stringinterp products_statusmessages plone_contentrules zope_schema acquisition transaction zope_site zope_container plone_app_vocabularies zope_publisher zope_formlib zodb3 five_formlib setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + record = buildPythonPackage rec { + name = "Record-2.13.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/R/Record/Record-2.13.0.zip"; + md5 = "cfed6a89d4fb2c9cb995e9084c3071b7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_behavior = buildPythonPackage rec { + name = "plone.behavior-1.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.behavior/plone.behavior-1.0.2.zip"; + md5 = "4459b91287ebc2f2cf4fa38728b2a739"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_configuration zope_component setuptools zope_schema zope_annotation ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_plonetestcase = buildPythonPackage rec { + name = "Products.PloneTestCase-0.9.15"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PloneTestCase/Products.PloneTestCase-0.9.15.zip"; + md5 = "ddd5810937919ab5233ebd64893c8bae"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfplone zope_testing zope2 products_genericsetup zope_site zope_interface products_atcontenttypes zope_component zodb3 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_stringinterp = buildPythonPackage rec { + name = "plone.stringinterp-1.0.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.stringinterp/plone.stringinterp-1.0.7.zip"; + md5 = "81909716210c6ac3fd0ee87f45ea523d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18n products_cmfcore setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_formwidget_namedfile = buildPythonPackage rec { + name = "plone.formwidget.namedfile-1.0.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.formwidget.namedfile/plone.formwidget.namedfile-1.0.5.zip"; + md5 = "7d39a5760d679c89d8e41abbc295240f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form plone_z3cform plone_namedfile setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_blob = buildPythonPackage rec { + name = "plone.app.blob-1.5.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.blob/plone.app.blob-1.5.7.zip"; + md5 = "135bc404212981c445d5bbb6a749b155"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_scale plone_app_imaging zodb3 setuptools archetypes_schemaextender zope_proxy ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfdynamicviewfti = buildPythonPackage rec { + name = "Products.CMFDynamicViewFTI-4.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFDynamicViewFTI/Products.CMFDynamicViewFTI-4.0.3.zip"; + md5 = "7d39d416b41b2d93954bc73d9d0e077f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass products_genericsetup zope_browsermenu zope_interface zope_component zope2 setuptools products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_keyring = buildPythonPackage rec { + name = "plone.keyring-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.keyring/plone.keyring-2.0.1.zip"; + md5 = "f3970e9bddb2cc65e461a2c62879233f"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_container zope_location zodb3 setuptools zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_contentprovider = buildPythonPackage rec { + name = "zope.contentprovider-3.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.contentprovider/zope.contentprovider-3.7.2.tar.gz"; + md5 = "1bb2132551175c0123f17939a793f812"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_publisher zope_interface zope_location zope_tales zope_component zope_event setuptools zope_schema ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_jquery = buildPythonPackage rec { + name = "plone.app.jquery-1.7.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.jquery/plone.app.jquery-1.7.2.tar.gz"; + md5 = "e204cf45456d26217263531832b5bdac"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_cmfcore setuptools products_genericsetup ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_atreferencebrowserwidget = buildPythonPackage rec { + name = "Products.ATReferenceBrowserWidget-3.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ATReferenceBrowserWidget/Products.ATReferenceBrowserWidget-3.0.zip"; + md5 = "157bdd32155c8353450c17c649aad042"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_deprecation archetypes_referencebrowserwidget setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_browserresource = buildPythonPackage rec { + name = "zope.browserresource-3.10.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.browserresource/zope.browserresource-3.10.3.zip"; + md5 = "dbfde30e82dbfa1a74c5da0cb5a4772d"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface zope_location zope_traversing zope_contenttype zope_configuration zope_publisher setuptools zope_schema zope_i18n zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_caching = buildPythonPackage rec { + name = "plone.caching-1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.caching/plone.caching-1.0.zip"; + md5 = "2c2e3b27d13b9101c92dfed222fde36c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid five_globalrequest z3c_caching zope_interface zope2 zope_component setuptools plone_transformchain zope_schema plone_registry ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_locales = buildPythonPackage rec { + name = "zope.app.locales-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.locales/zope.app.locales-3.6.2.tar.gz"; + md5 = "bd2b4c6040e768f33004b1210d3207fa"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_i18nmessageid setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_placelesstranslationservice = buildPythonPackage rec { + name = "Products.PlacelessTranslationService-2.0.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.PlacelessTranslationService/Products.PlacelessTranslationService-2.0.3.zip"; + md5 = "a94635eb712563c5a002520713f5d6dc"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ extensionclass zope_publisher zope_deferredimport zope_deprecation zope_interface python_gettext datetime zope_component zodb3 setuptools zope_annotation zope_i18n zope2 acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_z3cform = buildPythonPackage rec { + name = "plone.z3cform-0.8.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.z3cform/plone.z3cform-0.8.0.zip"; + md5 = "bdb23dd162544964d2f8f8f5f002e874"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope2 zope_component plone_batching zope_i18n z3c_form zope_browserpage setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_lifecycleevent = buildPythonPackage rec { + name = "zope.lifecycleevent-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.lifecycleevent/zope.lifecycleevent-3.6.2.tar.gz"; + md5 = "3ba978f3ba7c0805c81c2c79ea3edb33"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_form = buildPythonPackage rec { + name = "zope.app.form-4.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.form/zope.app.form-4.0.2.tar.gz"; + md5 = "3d2b164d9d37a71490a024aaeb412e91"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_browserpage zope_schema transaction zope_datetime zope_browsermenu zope_interface zope_exceptions zope_security zope_configuration zope_publisher zope_component zope_formlib zope_browser setuptools zope_proxy zope_i18n ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_tinymce = buildPythonPackage rec { + name = "Products.TinyMCE-1.3-1.3.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.TinyMCE/Products.TinyMCE-1.3.zip"; + md5 = "02bec5bac10a3fe5fff3d04beb46ac53"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_archetypes plone_app_imaging plone_namedfile plone_app_layout zope_schema products_resourceregistries zope_app_content plone_caching setuptools plone_outputfilters ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + collective_z3cform_datetimewidget = buildPythonPackage rec { + name = "collective.z3cform.datetimewidget-1.2.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/c/collective.z3cform.datetimewidget/collective.z3cform.datetimewidget-1.2.3.zip"; + md5 = "439117021c93f26c677510504ee245d3"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ z3c_form zope_deprecation zope_i18n setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_form = buildPythonPackage rec { + name = "z3c.form-3.0.0a2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.form/z3c.form-3.0.0a2.zip"; + md5 = "c4468ed0273901fb887cca9cfd1bb2cb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_site zope_pagetemplate zope_interface zope_browserresource six zope_security zope_configuration zope_component zope_event zope_traversing setuptools zope_schema zope_lifecycleevent zope_browser zope_i18n zope_location zope_contentprovider ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_dcworkflow = buildPythonPackage rec { + name = "Products.DCWorkflow-2.2.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.DCWorkflow/Products.DCWorkflow-2.2.4.tar.gz"; + md5 = "c90a16c4f3611015592ba8173a5f1863"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ zope2 products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + mechanize = buildPythonPackage rec { + name = "mechanize-0.2.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/m/mechanize/mechanize-0.2.5.zip"; + md5 = "a497ad4e875f7506ffcf8ad3ada4c2fc"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_iterate = buildPythonPackage rec { + name = "plone.app.iterate-2.1.10"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.iterate/plone.app.iterate-2.1.10.zip"; + md5 = "8bd270d8a3c9509e524a06e092a9b4c4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_viewlet zope_i18nmessageid zodb3 products_archetypes zope_interface plone_memoize products_cmfeditions datetime zope_component products_dcworkflow products_statusmessages zope_event setuptools products_cmfplacefulworkflow zope_schema zope_lifecycleevent zope_annotation zope2 plone_locking products_cmfcore acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + accesscontrol = buildPythonPackage rec { + name = "AccessControl-3.0.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/A/AccessControl/AccessControl-3.0.6.zip"; + md5 = "a8ce472482adabf9ec969f3971a39a19"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_security zope_testing extensionclass zope_publisher restrictedpython zope_interface zope_deferredimport zope_schema zope_configuration datetime record transaction acquisition zodb3 zope_component zexceptions persistence ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_testing = buildPythonPackage rec { + name = "zope.testing-3.9.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.testing/zope.testing-3.9.7.tar.gz"; + md5 = "8999f3d143d416dc3c8b2a5bd6f33e28"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_exceptions setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_externaleditor = buildPythonPackage rec { + name = "Products.ExternalEditor-1.1.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ExternalEditor/Products.ExternalEditor-1.1.0.zip"; + md5 = "475fea6e0b958c0c51cfdbfef2f4e623"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_app_publication = buildPythonPackage rec { + name = "zope.app.publication-3.12.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.app.publication/zope.app.publication-3.12.0.zip"; + md5 = "d8c521287f52fb9f40fa9b8c2acb4675"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_authentication zope_publisher zope_interface zope_location zope_traversing zope_component zope_error zodb3 setuptools zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_filerepresentation = buildPythonPackage rec { + name = "zope.filerepresentation-3.6.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/zope.filerepresentation-3.6.1.tar.gz"; + md5 = "4a7a434094f4bfa99a7f22e75966c359"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_schema zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + six = buildPythonPackage rec { + name = "six-1.2.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/s/six/six-1.2.0.tar.gz"; + md5 = "2a5d1afc79912832ac78fd38e3d75d7e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_dexterity = buildPythonPackage rec { + name = "plone.app.dexterity-2.0.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.dexterity/plone.app.dexterity-2.0.4.zip"; + md5 = "3fabdb2ec9fa0cfee0ffd4b7e9f05f5b"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ collective_z3cform_datetimewidget zope_interface zope_component plone_dexterity plone_autoform plone_behavior lxml zope_publisher products_genericsetup plone_supermodel plone_namedfile plone_app_content plone_app_textfield plone_app_z3cform plone_rfc822 plone_formwidget_namedfile z3c_form plone_portlets plone_app_uuid zope_browserpage plone_contentrules products_cmfplone zope_schema zope2 plone_app_layout plone_schemaeditor plone_z3cform setuptools products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_exceptions = buildPythonPackage rec { + name = "zope.exceptions-3.6.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.exceptions/zope.exceptions-3.6.2.tar.gz"; + md5 = "d7234d99d728abe3d9275346e8d24fd9"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_layout = buildPythonPackage rec { + name = "plone.app.layout-2.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.layout/plone.app.layout-2.3.4.zip"; + md5 = "817819f27ad46fcb8a9d66e988fa08f2"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ products_cmfdynamicviewfti zope_deprecation zope_interface plone_memoize zope_dottedname datetime zope_component zope_annotation zope_publisher plone_i18n products_cmfdefault plone_app_viewletmanager plone_portlets plone_app_portlets zope_schema zope_viewlet acquisition zope2 setuptools zope_i18n plone_locking products_cmfcore products_cmfeditions ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_contenttype = buildPythonPackage rec { + name = "zope.contenttype-3.5.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.contenttype/zope.contenttype-3.5.5.zip"; + md5 = "c6ac80e6887de4108a383f349fbdf332"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + five_customerize = buildPythonPackage rec { + name = "five.customerize-1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/f/five.customerize/five.customerize-1.1.zip"; + md5 = "80772212a2d55150a6c070fc4638b0c7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing transaction zope_publisher zope_site zope_pagetemplate zope_interface zope_traversing zope_dottedname plone_portlets zope_component zope_componentvocabulary setuptools zope_schema zope_lifecycleevent zope2 zope_viewlet acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_subrequest = buildPythonPackage rec { + name = "plone.subrequest-1.6.7"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.subrequest/plone.subrequest-1.6.7.zip"; + md5 = "cc12f68a22565415b10dbeef0020baa4"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_globalrequest five_globalrequest setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_site = buildPythonPackage rec { + name = "zope.site-3.9.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.site/zope.site-3.9.2.tar.gz"; + md5 = "36a0b8dfbd713ed452ce6973ab0a3ddb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_location zope_interface zope_security zope_container zope_event setuptools zope_lifecycleevent zope_annotation zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; wicked = buildPythonPackage rec { name = "wicked-1.1.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/w/wicked/${name}.zip"; - md5 = "f65611f11d547d7dc8e623bf87d3929d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - wsgi_intercept = buildPythonPackage rec { - name = "wsgi-intercept-0.4"; - src = fetchurl { url = "http://pypi.python.org/packages/source/w/wicked/wicked-1.1.10.zip"; md5 = "f65611f11d547d7dc8e623bf87d3929d"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_schema zope_container zope_traversing setuptools zope_lifecycleevent ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_autoinclude = buildPythonPackage rec { - name = "z3c.autoinclude-0.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.autoinclude/${name}.zip"; - md5 = "6a615ae18c12b459bceb3ae28e8e7709"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + plone_schemaeditor = buildPythonPackage rec { + name = "plone.schemaeditor-1.3.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.schemaeditor/plone.schemaeditor-1.3.1.zip"; + md5 = "81a5a66cc07b20c554c68ad2ae831b2f"; + }; buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope2 zope_publisher zope_container z3c_form zope_interface zope_component setuptools zope_schema zope_lifecycleevent plone_autoform plone_z3cform ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_batching = buildPythonPackage rec { - name = "z3c.batching-1.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.batching/${name}.tar.gz"; - md5 = "d1dc834781d228127ca6d15301757863"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_blobfile = buildPythonPackage rec { - name = "z3c.blobfile-0.1.5"; - + plone_app_uuid = buildPythonPackage rec { + name = "plone.app.uuid-1.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.blobfile/${name}.zip"; - md5 = "2e806640aa2f3b51e4578f35c44f567a"; + url = "http://pypi.python.org/packages/source/p/plone.app.uuid/plone.app.uuid-1.0.zip"; + md5 = "9ca8dcfb09a8a0d6bbee0f28073c3d3f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ plone_indexer zope_interface zope_publisher plone_uuid setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_caching = buildPythonPackage rec { - name = "z3c.caching-2.0a1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.caching/${name}.tar.gz"; - md5 = "17f250b5084c2324a7d15c6810ee628e"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_checkversions = buildPythonPackage rec { - name = "z3c.checkversions-0.4.1"; - + unittest2 = buildPythonPackage rec { + name = "unittest2-0.5.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.checkversions/${name}.tar.gz"; - md5 = "907f3a28aac04ad98fb3c4c5879a1eaf"; + url = "http://pypi.python.org/packages/source/u/unittest2/unittest2-0.5.1.zip"; + md5 = "1527fb89e38343945af1166342d851ee"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_coverage = buildPythonPackage rec { - name = "z3c.coverage-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.coverage/${name}.tar.gz"; - md5 = "d7f323a6c89f848fab38209f2162294d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_form = buildPythonPackage rec { - name = "z3c.form-2.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.form/${name}.tar.gz"; - md5 = "f029f83dd226f695f55049ed1ecee95e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_formwidget_query = buildPythonPackage rec { - name = "z3c.formwidget.query-0.9"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.formwidget.query/${name}.zip"; - md5 = "d9f7960b1a5a81d8ba5241530f496522"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_objpath = buildPythonPackage rec { - name = "z3c.objpath-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.objpath/${name}.tar.gz"; - md5 = "63641934441b255ebeeaeabc618f01ed"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_ptcompat = buildPythonPackage rec { - name = "z3c.ptcompat-1.0.1"; - + persistence = buildPythonPackage rec { + name = "Persistence-2.13.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.ptcompat/${name}.tar.gz"; - md5 = "bfe1ba6f9a38679705bd3eb5a5a2d7c4"; + url = "http://pypi.python.org/packages/source/P/Persistence/Persistence-2.13.2.zip"; + md5 = "92693648ccdc59c8fc71f7f06b1d228c"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_compattest = buildPythonPackage rec { - name = "z3c.recipe.compattest-0.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.compattest/${name}.tar.gz"; - md5 = "ed5a1bde7ce384154721913846c736c7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_depgraph = buildPythonPackage rec { - name = "z3c.recipe.depgraph-0.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.depgraph/${name}.zip"; - md5 = "eb734419815146eb5b7080b5e17346dc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ extensionclass zodb3 ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_recipe_sphinxdoc = buildPythonPackage rec { - name = "z3c.recipe.sphinxdoc-0.0.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.recipe.sphinxdoc/${name}.tar.gz"; - md5 = "86e6965c919b43fa1de07588580f8790"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - z3c_relationfield = buildPythonPackage rec { - name = "z3c.relationfield-0.6.2"; - + products_zopeversioncontrol = buildPythonPackage rec { + name = "Products.ZopeVersionControl-1.1.3"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.relationfield/${name}.zip"; - md5 = "e34a6230cdfbd4a0bc1c90a77600e0e7"; + url = "http://pypi.python.org/packages/source/P/Products.ZopeVersionControl/Products.ZopeVersionControl-1.1.3.zip"; + md5 = "238239102f3ac798ee4f4c53343a561f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ transaction zope_interface datetime zodb3 setuptools zope2 acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_template = buildPythonPackage rec { - name = "z3c.template-1.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.template/${name}.tar.gz"; - md5 = "330e2dba8cd064d5790392afd9f460dd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - z3c_zcmlhook = buildPythonPackage rec { - name = "z3c.zcmlhook-1.0b1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/z3c.zcmlhook/${name}.tar.gz"; - md5 = "7b6c80146f5930409eb0b355ddf3daeb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_lockfile = buildPythonPackage rec { - name = "zc.lockfile-1.0.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.lockfile/${name}.tar.gz"; - md5 = "6cf83766ef9935c33e240b0904c7a45e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_recipe_egg = buildPythonPackage rec { - name = "zc.recipe.egg-1.3.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.recipe.egg/${name}.tar.gz"; - md5 = "1cb6af73f527490dde461d3614a36475"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_recipe_testrunner = buildPythonPackage rec { - name = "zc.recipe.testrunner-1.2.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.recipe.testrunner/${name}.tar.gz"; - md5 = "1be4a1518e5b94890634468118242850"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_relation = buildPythonPackage rec { - name = "zc.relation-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.relation/${name}.tar.gz"; - md5 = "7e479095954fc6d8f648951434695837"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_resourcelibrary = buildPythonPackage rec { - name = "zc.resourcelibrary-1.3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.resourcelibrary/${name}.tar.gz"; - md5 = "bebe49f3e930f896a8ea75531bf3fae8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zc_sourcefactory = buildPythonPackage rec { - name = "zc.sourcefactory-0.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.sourcefactory/${name}.tar.gz"; - md5 = "532dfd0a72489023268c19e3788b105d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zconfig = buildPythonPackage rec { - name = "ZConfig-2.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZConfig/${name}.zip"; - md5 = "5c932690a70c8907efd240cdd76a7bc4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zdaemon = buildPythonPackage rec { - name = "zdaemon-2.0.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; - md5 = "291a875f82e812110557eb6704af8afe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zexceptions = buildPythonPackage rec { - name = "zExceptions-2.13.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zExceptions/${name}.zip"; - md5 = "4c679696c959040d8e656ef85ae40136"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zlog = buildPythonPackage rec { - name = "zLOG-2.11.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zLOG/${name}.tar.gz"; - md5 = "68073679aaa79ac5a7b6a5c025467147"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zodb3 = buildPythonPackage rec { - name = "ZODB3-3.10.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZODB3/${name}.tar.gz"; - md5 = "6f180c6897a1820948fee2a6290503cd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zodbcode = buildPythonPackage rec { - name = "zodbcode-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zodbcode/${name}.tar.gz"; - md5 = "9b128f89aa2a2117fae4f74757eefeff"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope2 = buildPythonPackage rec { - name = "Zope2-2.13.19"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/Zope2/${name}.zip"; - md5 = "26fee311aace7c12e406543ea91eb42a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_annotation = buildPythonPackage rec { - name = "zope.annotation-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.annotation/${name}.tar.gz"; - md5 = "4238153279d3f30ab5613438c8e76380"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_apidoc = buildPythonPackage rec { - name = "zope.app.apidoc-3.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.apidoc/${name}.zip"; - md5 = "91e969b2d1089bb0a6a303990d269f0a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_applicationcontrol = buildPythonPackage rec { - name = "zope.app.applicationcontrol-3.5.10"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.applicationcontrol/${name}.tar.gz"; - md5 = "f785c13698192c83024fda75f1f3d822"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_appsetup = buildPythonPackage rec { - name = "zope.app.appsetup-3.14.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.appsetup/${name}.tar.gz"; - md5 = "2c3da1f514e6793e2bf612cb06ad9076"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_authentication = buildPythonPackage rec { - name = "zope.app.authentication-3.8.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.authentication/${name}.tar.gz"; - md5 = "f8eb74fbdeebfd32c5e15c0f03aa3623"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_basicskin = buildPythonPackage rec { - name = "zope.app.basicskin-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.basicskin/${name}.tar.gz"; - md5 = "75915a315f336a5b614db67df1093eb3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_broken = buildPythonPackage rec { - name = "zope.app.broken-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.broken/${name}.tar.gz"; - md5 = "e6a7efdd1ea1facfd8c5ba4b25d395cb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_cache = buildPythonPackage rec { - name = "zope.app.cache-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.cache/${name}.zip"; - md5 = "8dd74574e869ce236ced0de7e349bb5c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_catalog = buildPythonPackage rec { - name = "zope.app.catalog-3.8.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.catalog/${name}.tar.gz"; - md5 = "1ce21dee4e8256cfe254f8ee24c6ecef"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_component = buildPythonPackage rec { - name = "zope.app.component-3.9.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.component/${name}.tar.gz"; - md5 = "bc2dce245d2afe462529c350956711e0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_container = buildPythonPackage rec { - name = "zope.app.container-3.9.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.container/${name}.tar.gz"; - md5 = "1e286c59f0166e517d67ddd723641c84"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_content = buildPythonPackage rec { - name = "zope.app.content-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.content/${name}.tar.gz"; - md5 = "0ac6a6fcb5dd6f845759f998d8e8cbb3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_dav = buildPythonPackage rec { - name = "zope.app.dav-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.dav/${name}.tar.gz"; - md5 = "19ec8dc5f7ad21468dea1c46e86d95dd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_debug = buildPythonPackage rec { - name = "zope.app.debug-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.debug/${name}.tar.gz"; - md5 = "1a9d349b14d91137b57da52a2b9d185f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_debugskin = buildPythonPackage rec { - name = "zope.app.debugskin-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.debugskin/${name}.tar.gz"; - md5 = "bd95d2848aa3108e53717d13b3c0924d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_dependable = buildPythonPackage rec { - name = "zope.app.dependable-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.dependable/${name}.zip"; - md5 = "5f180620a880e6ec754e3a34bd110891"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_error = buildPythonPackage rec { - name = "zope.app.error-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.error/${name}.tar.gz"; - md5 = "bab82dd06233e9b5e34e9709e8993ace"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_exception = buildPythonPackage rec { - name = "zope.app.exception-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.exception/${name}.tar.gz"; - md5 = "af161d3e7c17db7f56f7816a6f2d980c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_file = buildPythonPackage rec { - name = "zope.app.file-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.file/${name}.tar.gz"; - md5 = "fff140c36a2872c85b55433835ac3b98"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_folder = buildPythonPackage rec { - name = "zope.app.folder-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.folder/${name}.tar.gz"; - md5 = "5ba3a2a7ec527a7eb0cc3c2eb7bb75e9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_form = buildPythonPackage rec { - name = "zope.app.form-4.0.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.form/${name}.tar.gz"; - md5 = "3d2b164d9d37a71490a024aaeb412e91"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_ftp = buildPythonPackage rec { - name = "zope.app.ftp-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.ftp/${name}.tar.gz"; - md5 = "b0769f90023156a86cb3f46040e6b5b0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_generations = buildPythonPackage rec { - name = "zope.app.generations-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.generations/${name}.tar.gz"; - md5 = "ca74e0f4a01ad8767e1bba6332c39aa2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_http = buildPythonPackage rec { - name = "zope.app.http-3.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.http/${name}.tar.gz"; - md5 = "26f73a3affecefc3aff960cd8b088681"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_i18n = buildPythonPackage rec { - name = "zope.app.i18n-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.i18n/${name}.tar.gz"; - md5 = "c8573307ba08926214b7944a05e43632"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_interface = buildPythonPackage rec { - name = "zope.app.interface-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.interface/${name}.tar.gz"; - md5 = "b15522275a435c609bd44f2f019bd13c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_interpreter = buildPythonPackage rec { - name = "zope.app.interpreter-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.interpreter/${name}.tar.gz"; - md5 = "fb8a2aa57dcfa3af2f30801dfafc78c4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_intid = buildPythonPackage rec { - name = "zope.app.intid-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.intid/${name}.tar.gz"; - md5 = "0d2c1daf5d1d6fd09351b652042a2dac"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_keyreference = buildPythonPackage rec { - name = "zope.app.keyreference-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.keyreference/${name}.tar.gz"; - md5 = "78539e472016a8ca57b34b6ea0ab7d9d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_locales = buildPythonPackage rec { - name = "zope.app.locales-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.locales/${name}.tar.gz"; - md5 = "bd2b4c6040e768f33004b1210d3207fa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_localpermission = buildPythonPackage rec { - name = "zope.app.localpermission-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.localpermission/${name}.tar.gz"; - md5 = "121509781b19ce55ebe890fa408702fc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_locking = buildPythonPackage rec { - name = "zope.app.locking-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.locking/${name}.tar.gz"; - md5 = "4edce1ba26f6c56b0eb79f703d8a80fe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_onlinehelp = buildPythonPackage rec { - name = "zope.app.onlinehelp-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.onlinehelp/${name}.tar.gz"; - md5 = "67d0be66965e34b24ef18c269da62e4c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_pagetemplate = buildPythonPackage rec { - name = "zope.app.pagetemplate-3.11.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.pagetemplate/${name}.tar.gz"; - md5 = "2d304729c0d6a9ab67dd5ea852f19476"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_preference = buildPythonPackage rec { - name = "zope.app.preference-3.8.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.preference/${name}.tar.gz"; - md5 = "ab6906261854c61ff9f0a13c7612d3e8"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_preview = buildPythonPackage rec { - name = "zope.app.preview-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.preview/${name}.tar.gz"; - md5 = "e698c10b043fb944150a825af9af536e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_principalannotation = buildPythonPackage rec { - name = "zope.app.principalannotation-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.principalannotation/${name}.tar.gz"; - md5 = "29c6bf8e817330b0d29de253686a68f2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_publication = buildPythonPackage rec { - name = "zope.app.publication-3.12.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.publication/${name}.zip"; - md5 = "d8c521287f52fb9f40fa9b8c2acb4675"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_publisher = buildPythonPackage rec { - name = "zope.app.publisher-3.10.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.publisher/${name}.zip"; - md5 = "66e9110e2967d8d204a65a98e2227404"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_renderer = buildPythonPackage rec { - name = "zope.app.renderer-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.renderer/${name}.tar.gz"; - md5 = "1cc605baf5dab7db50b0a0fd218566f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_rotterdam = buildPythonPackage rec { - name = "zope.app.rotterdam-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.rotterdam/${name}.tar.gz"; - md5 = "4cb3c53844bc7481f9b7d60f3c5e3a85"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_schema = buildPythonPackage rec { - name = "zope.app.schema-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.schema/${name}.tar.gz"; - md5 = "92b7c3f4512f3433acc931ecb6ffc936"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_security = buildPythonPackage rec { - name = "zope.app.security-3.7.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.security/${name}.tar.gz"; - md5 = "c7cec00f6d8379b93180faf6ffaa89ea"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_securitypolicy = buildPythonPackage rec { - name = "zope.app.securitypolicy-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.securitypolicy/${name}.tar.gz"; - md5 = "e3c6ef1db3228dbbb60a452c1a2a8f27"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_server = buildPythonPackage rec { - name = "zope.app.server-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.server/${name}.tar.gz"; - md5 = "d3a75eaf2a3f4759352dd3243dfb1d50"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_session = buildPythonPackage rec { - name = "zope.app.session-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.session/${name}.tar.gz"; - md5 = "93467bf6854d714b53e71f36a9d770f3"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_skins = buildPythonPackage rec { - name = "zope.app.skins-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.skins/${name}.tar.gz"; - md5 = "a0bc210720ee50e40adb93e9c685e884"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_testing = buildPythonPackage rec { - name = "zope.app.testing-3.7.8"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.testing/${name}.tar.gz"; - md5 = "6fd3eb11e24973a3dbdf5f1ab655c0d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_tree = buildPythonPackage rec { - name = "zope.app.tree-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.tree/${name}.tar.gz"; - md5 = "fbde3403c682bc7cf7b73d43cd2eed3a"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_twisted = buildPythonPackage rec { - name = "zope.app.twisted-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.twisted/${name}.tar.gz"; - md5 = "9e98868b8be8a0c4f720036366364a67"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_undo = buildPythonPackage rec { - name = "zope.app.undo-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.undo/${name}.tar.gz"; - md5 = "7a40060aa0451a635a31d6e12d17a82e"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_wsgi = buildPythonPackage rec { - name = "zope.app.wsgi-3.9.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.wsgi/${name}.tar.gz"; - md5 = "9c766908b720d777e02e0b0a9ac8a8a1"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zcmlfiles = buildPythonPackage rec { - name = "zope.app.zcmlfiles-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zcmlfiles/${name}.tar.gz"; - md5 = "0e8991d2bed71ee6b98a2c48d21e1126"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zopeappgenerations = buildPythonPackage rec { - name = "zope.app.zopeappgenerations-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zopeappgenerations/${name}.tar.gz"; - md5 = "4c8a0bc409677f8b17dc57737d41f919"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_app_zptpage = buildPythonPackage rec { - name = "zope.app.zptpage-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.app.zptpage/${name}.tar.gz"; - md5 = "aed8ec49e10911bd1e9d2c9d467fd098"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_applicationcontrol = buildPythonPackage rec { - name = "zope.applicationcontrol-3.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.applicationcontrol/${name}.tar.gz"; - md5 = "5e4bb54afe55185e15bd9d1ba3750857"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_authentication = buildPythonPackage rec { - name = "zope.authentication-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.authentication/${name}.zip"; - md5 = "7d6bb340610518f2fc71213cfeccda68"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_broken = buildPythonPackage rec { - name = "zope.broken-3.6.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.broken/${name}.zip"; - md5 = "eff24d7918099a3e899ee63a9c31bee6"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browser = buildPythonPackage rec { - name = "zope.browser-1.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browser/${name}.zip"; - md5 = "4ff0ddbf64c45bfcc3189e35f4214ded"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browsermenu = buildPythonPackage rec { - name = "zope.browsermenu-3.9.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browsermenu/${name}.zip"; - md5 = "a47c7b1e786661c912a1150bf8d1f83f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browserpage = buildPythonPackage rec { - name = "zope.browserpage-3.12.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browserpage/${name}.tar.gz"; - md5 = "a543ef3cb1b42f7233b3fca23dc9ea60"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_browserresource = buildPythonPackage rec { - name = "zope.browserresource-3.10.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browserresource/${name}.zip"; - md5 = "dbfde30e82dbfa1a74c5da0cb5a4772d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_cachedescriptors = buildPythonPackage rec { - name = "zope.cachedescriptors-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.cachedescriptors/${name}.zip"; - md5 = "263459a95238fd61d17e815d97ca49ce"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_catalog = buildPythonPackage rec { - name = "zope.catalog-3.8.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.catalog/${name}.tar.gz"; - md5 = "f9baff3997e337f0a23ac158258c8842"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_component = buildPythonPackage rec { - name = "zope.component-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.component/${name}.tar.gz"; - md5 = "22780b445b1b479701c05978055d1c82"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_componentvocabulary = buildPythonPackage rec { - name = "zope.componentvocabulary-1.0.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.componentvocabulary/${name}.tar.gz"; - md5 = "1c8fa82ca1ab1f4b0bd2455a31fde22b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_configuration = buildPythonPackage rec { - name = "zope.configuration-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.configuration/${name}.zip"; - md5 = "5b0271908ef26c05059eda76928896ea"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_container = buildPythonPackage rec { - name = "zope.container-3.11.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.container/${name}.tar.gz"; - md5 = "fc66d85a17b8ffb701091c9328983dcc"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_contentprovider = buildPythonPackage rec { - name = "zope.contentprovider-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.contentprovider/${name}.tar.gz"; - md5 = "1bb2132551175c0123f17939a793f812"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_contenttype = buildPythonPackage rec { - name = "zope.contenttype-3.5.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.contenttype/${name}.zip"; - md5 = "c6ac80e6887de4108a383f349fbdf332"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_copy = buildPythonPackage rec { - name = "zope.copy-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.copy/${name}.tar.gz"; - md5 = "a9836a5d36cd548be45210eb00407337"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_copypastemove = buildPythonPackage rec { - name = "zope.copypastemove-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.copypastemove/${name}.tar.gz"; - md5 = "f335940686d15cfc5520c42f2494a924"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_datetime = buildPythonPackage rec { - name = "zope.datetime-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.datetime/${name}.tar.gz"; - md5 = "4dde22d34f41a0a4f0c5a345e6d11ee9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_deferredimport = buildPythonPackage rec { - name = "zope.deferredimport-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.deferredimport/${name}.tar.gz"; - md5 = "68fce3bf4f011d4a840902fd763884ee"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_deprecation = buildPythonPackage rec { - name = "zope.deprecation-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.deprecation/${name}.tar.gz"; - md5 = "8a47b0f8e1fa4e833007e5b8351bb1d4"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_documenttemplate = buildPythonPackage rec { - name = "zope.documenttemplate-3.4.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.documenttemplate/${name}.tar.gz"; - md5 = "d5c302534ee0913c39bdc227e1592cb7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_dottedname = buildPythonPackage rec { - name = "zope.dottedname-3.4.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.dottedname/${name}.tar.gz"; - md5 = "62d639f75b31d2d864fe5982cb23959c"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_dublincore = buildPythonPackage rec { - name = "zope.dublincore-3.7.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.dublincore/${name}.tar.gz"; - md5 = "2e34e42e454d896feb101ac74af62ded"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_error = buildPythonPackage rec { - name = "zope.error-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.error/${name}.tar.gz"; - md5 = "281445a906458ff5f18f56923699a127"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_event = buildPythonPackage rec { - name = "zope.event-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.event/${name}.tar.gz"; - md5 = "6e8af2a16157a74885d4f0d88137cefb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_exceptions = buildPythonPackage rec { - name = "zope.exceptions-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.exceptions/${name}.tar.gz"; - md5 = "d7234d99d728abe3d9275346e8d24fd9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_file = buildPythonPackage rec { - name = "zope.file-0.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.file/${name}.tar.gz"; - md5 = "5df3b63c678f4b445be345f1dff1bc9b"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_filerepresentation = buildPythonPackage rec { - name = "zope.filerepresentation-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/${name}.tar.gz"; - md5 = "4a7a434094f4bfa99a7f22e75966c359"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_formlib = buildPythonPackage rec { - name = "zope.formlib-4.0.6"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.formlib/${name}.zip"; - md5 = "eed9c94382d11a4dececd0a48ac1d3f2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_globalrequest = buildPythonPackage rec { - name = "zope.globalrequest-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.globalrequest/${name}.zip"; - md5 = "ae6ff02db5ba89c1fb96ed7a73ca1cfa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_hookable = buildPythonPackage rec { - name = "zope.hookable-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.hookable/${name}.tar.gz"; - md5 = "fe6713aef5b6c0f4963fb984bf326da0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_html = buildPythonPackage rec { - name = "zope.html-2.1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.html/${name}.tar.gz"; - md5 = "868cb987e400b9a290355a1207d47143"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_i18n = buildPythonPackage rec { - name = "zope.i18n-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18n/${name}.tar.gz"; - md5 = "a6fe9d9ad53dd7e94e87cd58fb67d3b7"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_i18nmessageid = buildPythonPackage rec { - name = "zope.i18nmessageid-3.5.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18nmessageid/${name}.tar.gz"; - md5 = "cb84bf61c2b7353e3b7578057fbaa264"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_index = buildPythonPackage rec { - name = "zope.index-3.6.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.index/${name}.tar.gz"; - md5 = "65c34f446f54ffd711e34ede9eb89dad"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_interface = buildPythonPackage rec { - name = "zope.interface-3.6.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.interface/${name}.zip"; - md5 = "9df962180fbbb54eb1875cff9fe436e5"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_intid = buildPythonPackage rec { - name = "zope.intid-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.intid/${name}.zip"; - md5 = "241f2fe62fb60f6319d9902b12bc333d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - buildInputs = [ pkgs.unzip ]; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_keyreference = buildPythonPackage rec { - name = "zope.keyreference-3.6.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.keyreference/${name}.tar.gz"; - md5 = "3774c90f236f880547f4c042ee0997e9"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_kgs = buildPythonPackage rec { - name = "zope.kgs-1.2.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.kgs/${name}.tar.gz"; - md5 = "15ed01a270bddcf253b1c08479549692"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_lifecycleevent = buildPythonPackage rec { - name = "zope.lifecycleevent-3.6.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.lifecycleevent/${name}.tar.gz"; - md5 = "3ba978f3ba7c0805c81c2c79ea3edb33"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - zope_location = buildPythonPackage rec { name = "zope.location-3.9.1"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.location/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/z/zope.location/zope.location-3.9.1.tar.gz"; md5 = "1684a8f986099d15296f670c58e713d8"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_schema zope_component setuptools zope_proxy ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_login = buildPythonPackage rec { - name = "zope.login-1.0.0"; - + zope_browsermenu = buildPythonPackage rec { + name = "zope.browsermenu-3.9.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.login/${name}.zip"; - md5 = "4eceb766329125a80aee1b4b4809869a"; + url = "http://pypi.python.org/packages/source/z/zope.browsermenu/zope.browsermenu-3.9.1.zip"; + md5 = "a47c7b1e786661c912a1150bf8d1f83f"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_interface zope_traversing zope_component zope_security zope_configuration zope_pagetemplate setuptools zope_schema zope_browser ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_mimetype = buildPythonPackage rec { - name = "zope.mimetype-1.3.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.mimetype/${name}.tar.gz"; - md5 = "c865758c896707287f86ba603f06a84b"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_minmax = buildPythonPackage rec { - name = "zope.minmax-1.1.2"; - + plone_app_workflow = buildPythonPackage rec { + name = "plone.app.workflow-2.1.2"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.minmax/${name}.tar.gz"; - md5 = "0c3fbac9623f402ed758dace80080d55"; + url = "http://pypi.python.org/packages/source/p/plone.app.workflow/plone.app.workflow-2.1.2.zip"; + md5 = "8da95b396f3a9ec54895085ef12202a7"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_mkzeoinstance = buildPythonPackage rec { - name = "zope.mkzeoinstance-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.mkzeoinstance/${name}.tar.gz"; - md5 = "2c2dcf7cc7de58f7d009ca3294f54377"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_modulealias = buildPythonPackage rec { - name = "zope.modulealias-3.4.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.modulealias/${name}.tar.gz"; - md5 = "77f4603524b578a5c6b4b4fdde58a484"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_pagetemplate = buildPythonPackage rec { - name = "zope.pagetemplate-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.pagetemplate/${name}.zip"; - md5 = "834a4bf702c05fba1e669677b4dc871f"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid transaction products_genericsetup zope_site zope_interface plone_memoize zope_testing datetime zope_component products_statusmessages zope2 setuptools products_dcworkflow zope_schema zope_i18n products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_password = buildPythonPackage rec { - name = "zope.password-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.password/${name}.tar.gz"; - md5 = "230f93a79020c8a3dc01d79832546e3c"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_pluggableauth = buildPythonPackage rec { - name = "zope.pluggableauth-1.0.3"; - + plone_locking = buildPythonPackage rec { + name = "plone.locking-2.0.4"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.pluggableauth/${name}.tar.gz"; - md5 = "85d16cb2e5b41bf2a438828857719566"; + url = "http://pypi.python.org/packages/source/p/plone.locking/plone.locking-2.0.4.zip"; + md5 = "a7f8b8db78f57272d351d7fe0d067eb2"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_preference = buildPythonPackage rec { - name = "zope.preference-3.8.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.preference/${name}.tar.gz"; - md5 = "bb8b1c9f65387a51be429407528cc453"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_principalannotation = buildPythonPackage rec { - name = "zope.principalannotation-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.principalannotation/${name}.tar.gz"; - md5 = "652685ca13cefaad78dbc5c6507fc9ab"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_principalregistry = buildPythonPackage rec { - name = "zope.principalregistry-3.7.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.principalregistry/${name}.tar.gz"; - md5 = "9b90adc7915d9bbed4237db432fc70c2"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_processlifetime = buildPythonPackage rec { - name = "zope.processlifetime-1.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.processlifetime/${name}.tar.gz"; - md5 = "69604bfd668a01ebebdd616a8f26ccfe"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_proxy = buildPythonPackage rec { - name = "zope.proxy-3.6.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.proxy/${name}.zip"; - md5 = "a400b0a26624b17fa889dbcaa989d440"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope2 zope_interface datetime zope_component zodb3 setuptools zope_schema zope_annotation zope_viewlet products_cmfcore acquisition ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_ptresource = buildPythonPackage rec { - name = "zope.ptresource-3.9.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.ptresource/${name}.tar.gz"; - md5 = "f4645e51c15289d3fdfb4139039e18e9"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_publisher = buildPythonPackage rec { - name = "zope.publisher-3.12.6"; - + zope_dottedname = buildPythonPackage rec { + name = "zope.dottedname-3.4.6"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.publisher/${name}.tar.gz"; - md5 = "495131970cc7cb14de8e517fb3857ade"; + url = "http://pypi.python.org/packages/source/z/zope.dottedname/zope.dottedname-3.4.6.tar.gz"; + md5 = "62d639f75b31d2d864fe5982cb23959c"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_ramcache = buildPythonPackage rec { - name = "zope.ramcache-1.0"; - + zope_cachedescriptors = buildPythonPackage rec { + name = "zope.cachedescriptors-3.5.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.ramcache/${name}.zip"; - md5 = "87289e15f0e51f50704adda1557c02a7"; + url = "http://pypi.python.org/packages/source/z/zope.cachedescriptors/zope.cachedescriptors-3.5.1.zip"; + md5 = "263459a95238fd61d17e815d97ca49ce"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ setuptools ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_rdb = buildPythonPackage rec { - name = "zope.rdb-3.5.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.rdb/${name}.tar.gz"; - md5 = "2068b469c07c9c0b41392cd9839e3728"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_schema = buildPythonPackage rec { - name = "zope.schema-4.2.1"; - + plone_app_collection = buildPythonPackage rec { + name = "plone.app.collection-1.0.8"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.schema/${name}.zip"; - md5 = "bfa0460b68df0dbbf7a5dc793b0eecc6"; + url = "http://pypi.python.org/packages/source/p/plone.app.collection/plone.app.collection-1.0.8.zip"; + md5 = "8bbd299daa04b35ecfad3c13afa7aba0"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ plone_portlet_collection zope_i18nmessageid transaction plone_app_contentlisting zope_component plone_app_vocabularies plone_app_form products_validation zope_configuration plone_portlets setuptools products_archetypes zope2 plone_app_portlets zope_interface zope_schema products_cmfquickinstallertool archetypes_querywidget products_cmfcore zope_formlib ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_security = buildPythonPackage rec { - name = "zope.security-3.7.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.security/${name}.tar.gz"; - md5 = "072ab8d11adc083eace11262da08630c"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_securitypolicy = buildPythonPackage rec { - name = "zope.securitypolicy-3.7.0"; - + zc_lockfile = buildPythonPackage rec { + name = "zc.lockfile-1.0.0"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.securitypolicy/${name}.tar.gz"; - md5 = "fe9ba029384c0640b2ba175ba1805cd8"; + url = "http://pypi.python.org/packages/source/z/zc.lockfile/zc.lockfile-1.0.0.tar.gz"; + md5 = "6cf83766ef9935c33e240b0904c7a45e"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; + lxml = buildPythonPackage rec { + name = "lxml-2.3.6"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/l/lxml/lxml-2.3.6.tar.gz"; + md5 = "d5d886088e78b1bdbfd66d328fc2d0bc"; + }; + buildInputs = [ pkgs.libxml2 pkgs.libxslt ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_contentrules = buildPythonPackage rec { + name = "plone.contentrules-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.contentrules/plone.contentrules-2.0.2.zip"; + md5 = "a32370656c4fd58652fcd8a234db69c5"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_i18nmessageid zope_container zope_interface zope_testing zope_configuration zope_component zope_componentvocabulary setuptools zodb3 zope_schema zope_lifecycleevent zope_annotation ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; zope_sendmail = buildPythonPackage rec { name = "zope.sendmail-3.7.5"; - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.sendmail/${name}.tar.gz"; + url = "http://pypi.python.org/packages/source/z/zope.sendmail/zope.sendmail-3.7.5.tar.gz"; md5 = "8a513ecf2b41cad849f6607bf16d6818"; }; - - # ignore dependencies + buildInputs = [ ]; + propagatedBuildInputs = [ zope_i18nmessageid transaction zope_interface zope_configuration setuptools zope_schema zope_component ]; + doCheck = false; installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_sequencesort = buildPythonPackage rec { - name = "zope.sequencesort-3.4.0"; - + zope_formlib = buildPythonPackage rec { + name = "zope.formlib-4.0.6"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.sequencesort/${name}.tar.gz"; - md5 = "cfc35fc426a47f5c0ee43c416224b864"; + url = "http://pypi.python.org/packages/source/z/zope.formlib/zope.formlib-4.0.6.zip"; + md5 = "eed9c94382d11a4dececd0a48ac1d3f2"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_server = buildPythonPackage rec { - name = "zope.server-3.6.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.server/${name}.tar.gz"; - md5 = "2a758720fd6d9bdfb1cea8d644c27923"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_session = buildPythonPackage rec { - name = "zope.session-3.9.5"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.session/${name}.tar.gz"; - md5 = "2934e9f2daa01555e9a7a1f9945c3493"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_site = buildPythonPackage rec { - name = "zope.site-3.9.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.site/${name}.tar.gz"; - md5 = "36a0b8dfbd713ed452ce6973ab0a3ddb"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_size = buildPythonPackage rec { - name = "zope.size-3.4.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.size/${name}.tar.gz"; - md5 = "55d9084dfd9dcbdb5ad2191ceb5ed03d"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_structuredtext = buildPythonPackage rec { - name = "zope.structuredtext-3.5.1"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.structuredtext/${name}.tar.gz"; - md5 = "eabbfb983485d0879322bc878d2478a0"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_tal = buildPythonPackage rec { - name = "zope.tal-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.tal/${name}.zip"; - md5 = "13869f292ba36b294736b7330b1396fd"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ zope_i18nmessageid zope_publisher zope_schema zope_datetime zope_interface zope_traversing zope_security zope_component pytz zope_event zope_browser setuptools zope_lifecycleevent zope_i18n zope_browserpage ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_tales = buildPythonPackage rec { - name = "zope.tales-3.5.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.tales/${name}.tar.gz"; - md5 = "1c5060bd766a0a18632b7879fc9e4e1e"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_testbrowser = buildPythonPackage rec { - name = "zope.testbrowser-3.11.1"; - + plone_app_caching = buildPythonPackage rec { + name = "plone.app.caching-1.1.3"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testbrowser/${name}.tar.gz"; - md5 = "64abbee892121e7f1a91aed12cfc155a"; + url = "http://pypi.python.org/packages/source/p/plone.app.caching/plone.app.caching-1.1.3.zip"; + md5 = "1975506ecf8d42944946dbb2b8f8dc01"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_testing = buildPythonPackage rec { - name = "zope.testing-3.9.7"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.tar.gz"; - md5 = "8999f3d143d416dc3c8b2a5bd6f33e28"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_thread = buildPythonPackage rec { - name = "zope.thread-3.4"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.thread/${name}.tar.gz"; - md5 = "3567037865b746c933d4af86e5aefa35"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_traversing = buildPythonPackage rec { - name = "zope.traversing-3.13.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.traversing/${name}.zip"; - md5 = "eaad8fc7bbef126f9f8616b074ec00aa"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti z3c_form zope_interface plone_memoize zope_component plone_caching zope_publisher products_genericsetup plone_app_registry z3c_zcmlhook setuptools plone_app_z3cform products_statusmessages python_dateutil plone_cachepurging acquisition zope2 zope_pagetemplate zope_browserresource plone_protect plone_registry products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zope_viewlet = buildPythonPackage rec { - name = "zope.viewlet-3.7.2"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.viewlet/${name}.tar.gz"; - md5 = "367e03096df57e2f9b74fff43f7901f9"; - }; - - # ignore dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; - - zope_xmlpickle = buildPythonPackage rec { - name = "zope.xmlpickle-3.4.0"; - + products_cmfplone = buildPythonPackage rec { + name = "Products.CMFPlone-4.3rc1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.xmlpickle/${name}.tar.gz"; - md5 = "b579f35546b095aec2c890d3f8a46911"; + url = "http://pypi.python.org/packages/source/P/Products.CMFPlone/Products.CMFPlone-4.3rc1.zip"; + md5 = "cc861f8fa93f50a531cb850ea5a9fa37"; }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - - doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - zopeundo = buildPythonPackage rec { - name = "ZopeUndo-2.12.0"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZopeUndo/${name}.zip"; - md5 = "2b8da09d1b98d5558f62e12f6e52c401"; - }; - - # ignore dependencies - installCommand = '' - easy_install --always-unzip --no-deps --prefix="$out" . - ''; - buildInputs = [ pkgs.unzip ]; - + propagatedBuildInputs = [ products_cmfdynamicviewfti plone_app_blob products_dcworkflow products_extendedpathindex zope_dottedname datetime zope_traversing products_tinymce zope_publisher plonetheme_classic plone_batching plone_fieldsets products_cmfdefault acquisition plone_app_contentlisting products_externaleditor products_pluginregistry products_cmfeditions products_resourceregistries zope_tal plone_app_jquerytools products_genericsetup pillow five_localsitemanager plone_app_vocabularies zope_location zope_deferredimport products_plonelanguagetool borg_localrole zope_i18n plone_browserlayer plone_theme plone_memoize plone_app_contentmenu plone_app_i18n zope_component products_mimetypesregistry plone_app_customerize plone_app_folder plone_registry zope_i18nmessageid plone_app_upgrade products_cmfdifftool five_customerize plone_app_search products_portaltransforms plone_app_controlpanel plone_app_locales plone_app_linkintegrity zope2 plone_contentrules plone_app_portlets products_plonepas zope_pagetemplate zodb3 plone_locking products_cmfformcontroller zope_deprecation plone_app_form plone_app_layout products_cmfquickinstallertool archetypes_querywidget plone_app_redirector plone_i18n plone_app_registry products_placelesstranslationservice plone_app_users zope_interface zope_event plone_app_viewletmanager zope_structuredtext z3c_autoinclude zope_app_locales plone_portlets products_statusmessages products_cmfcalendar extensionclass products_pluggableauthservice plone_indexer products_cmfuid zope_container plone_app_workflow setuptools plone_portlet_collection plone_app_contentrules products_cmfactionicons products_archetypes plone_intelligenttext plone_app_collection products_passwordresettool plone_app_content plonetheme_sunburst plone_protect zope_tales plone_app_uuid archetypes_referencebrowserwidget products_atcontenttypes plone_app_jquery transaction zope_site plone_app_discussion plone_portlet_static plone_session products_cmfcore ]; doCheck = false; - - meta = { - maintainers = [ - stdenv.lib.maintainers.chaoflow - stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; - }; - }; - - - eggtestinfo = buildPythonPackage rec { - name = "eggtestinfo-0.3"; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/e/eggtestinfo/${name}.tar.gz"; - md5 = "6f0507aee05f00c640c0d64b5073f840"; - }; - - # circular dependencies installCommand = '' easy_install --always-unzip --no-deps --prefix="$out" . ''; - - doCheck = false; - + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; maintainers = [ - stdenv.lib.maintainers.chaoflow stdenv.lib.maintainers.garbas - stdenv.lib.maintainers.goibhniu - ]; + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; }; }; -}; in plone42Packages + transaction = buildPythonPackage rec { + name = "transaction-1.1.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/t/transaction/transaction-1.1.1.tar.gz"; + md5 = "30b062baa34fe1521ad979fb088c8c55"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; -# Not Found: ['nt-svcutils', 'PIL', 'wsgi-intercept'] -# Version Error: ['collective.z3cform.datagridfield-demo'] + plone_app_controlpanel = buildPythonPackage rec { + name = "plone.app.controlpanel-2.3.4"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.controlpanel/plone.app.controlpanel-2.3.4.zip"; + md5 = "d01b8c188498080a52275de2a50b25eb"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zope_interface plone_memoize zope_component plone_app_workflow zope_annotation zope_ramcache zope_publisher products_portaltransforms plone_fieldsets zope_event products_cmfdefault zope_cachedescriptors plone_app_form setuptools products_statusmessages zope_schema zope2 acquisition products_plonepas zope_site plone_app_vocabularies zope_formlib zodb3 plone_protect zope_i18n plone_locking products_cmfcore ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_redirector = buildPythonPackage rec { + name = "plone.app.redirector-1.2a1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.redirector/plone.app.redirector-1.2a1.zip"; + md5 = "b63b6443b4bbc5562bddcb43600349f7"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ plone_memoize setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_component = buildPythonPackage rec { + name = "zope.component-3.9.5"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.component/zope.component-3.9.5.tar.gz"; + md5 = "22780b445b1b479701c05978055d1c82"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_event setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zope_broken = buildPythonPackage rec { + name = "zope.broken-3.6.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zope.broken/zope.broken-3.6.0.zip"; + md5 = "eff24d7918099a3e899ee63a9c31bee6"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_interface setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_namedfile = buildPythonPackage rec { + name = "plone.namedfile-2.0.1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.namedfile/plone.namedfile-2.0.1.zip"; + md5 = "9739c2fe25977d7e050a85eaed9e776a"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_traversing zope_security zope_component zope_browserpage setuptools plone_rfc822 ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_openid = buildPythonPackage rec { + name = "plone.app.openid-2.0.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.openid/plone.app.openid-2.0.2.tar.gz"; + md5 = "ae0748f91cab0612a498926d405d8edd"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ products_plonepas zope_i18nmessageid zope2 setuptools plone_openid zope_interface plone_portlets zope_component plone_app_portlets products_cmfcore products_pluggableauthservice ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + z3c_caching = buildPythonPackage rec { + name = "z3c.caching-2.0a1"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/z3c.caching/z3c.caching-2.0a1.tar.gz"; + md5 = "17f250b5084c2324a7d15c6810ee628e"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ zope_interface zope_component zope_event setuptools zope_lifecycleevent zope_browser ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + plone_app_textfield = buildPythonPackage rec { + name = "plone.app.textfield-1.2.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/p/plone.app.textfield/plone.app.textfield-1.2.2.zip"; + md5 = "f832887a40826d6f68c48b48f071fb9c"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_schema zope_interface zodb3 setuptools zope_component ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + tempstorage = buildPythonPackage rec { + name = "tempstorage-2.12.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/t/tempstorage/tempstorage-2.12.2.zip"; + md5 = "7a2b76b39839e229249b1bb175604480"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ zope_testing zodb3 setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + zc_buildout = buildPythonPackage rec { + name = "zc.buildout-1.7.0"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-1.7.0.tar.gz"; + md5 = "4e3b521600e475c56a0a66459a5fc7bb"; + }; + buildInputs = [ ]; + propagatedBuildInputs = [ setuptools ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_cmfactionicons = buildPythonPackage rec { + name = "Products.CMFActionIcons-2.1.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.CMFActionIcons/Products.CMFActionIcons-2.1.3.tar.gz"; + md5 = "ab1dc62404ed11aea84dc0d782b2235e"; + }; + buildInputs = [ eggtestinfo ]; + propagatedBuildInputs = [ products_cmfcore setuptools products_genericsetup eggtestinfo ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + products_zctextindex = buildPythonPackage rec { + name = "Products.ZCTextIndex-2.13.3"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/P/Products.ZCTextIndex/Products.ZCTextIndex-2.13.3.zip"; + md5 = "bf95ea9fa2831237fa3c3d38fafdec96"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ accesscontrol transaction zope_interface zexceptions zodb3 persistence setuptools acquisition ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + + extensionclass = buildPythonPackage rec { + name = "ExtensionClass-2.13.2"; + src = fetchurl { + url = "http://pypi.python.org/packages/source/E/ExtensionClass/ExtensionClass-2.13.2.zip"; + md5 = "0236e6d7da9e8b87b9ba45f1b8f930b8"; + }; + buildInputs = [ pkgs.unzip ]; + propagatedBuildInputs = [ ]; + doCheck = false; + installCommand = '' + easy_install --always-unzip --no-deps --prefix="$out" . + ''; + + meta = { + description = "UNKNOWN"; + homepage = "UNKNOWN"; + maintainers = [ + stdenv.lib.maintainers.garbas + stdenv.lib.maintainers.iElectric + ]; + platforms = stdenv.lib.platforms.all; + }; + }; + +}; in plone43rc1Packages diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index d2e438dfa7b..41d70533437 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -63,5 +63,6 @@ stdenv.mkDerivation rec { * even practicing guitar chords! ''; license = "GPLv3"; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 3cb79e94631..ba45360ccb6 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "spring-${version}"; - version = "0.91.0"; + version = "94.1"; src = fetchurl { - url = "mirror://sourceforge/springrts/spring_91.0_src.tar.lzma"; - sha256 = "0ycn9yxpbw58a8p3j3wf3r0x102k665l27bfp1vxq7kpwlk6314l"; + url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; + sha256 = "19myqwpz4mi4zdlcv8318dps0ymmw7qpawhq1rgk73ycmaiyaaka"; }; buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index 4e06c31442a..e6051a12a26 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar +{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11 , gettext, bash, gawk, boost}: stdenv.mkDerivation rec { name = "springlobby-${version}"; - version = "0.146"; + version = "0.169"; src = fetchurl { url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2"; - sha256 = "55899baf6732e48bfaa36d80974aa135c051d2cbb6fe92fbcffd80440639eedf"; + sha256 = "1wr8q2ha3wh718rr5rg7l6v404nf1rgkg4wkja77rfqy7r18zn7g"; }; - buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost]; + buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost libpng libX11 ]; prePatch = '' substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash" diff --git a/pkgs/lib/maintainers.nix b/pkgs/lib/maintainers.nix index a2e8b50c10e..4c47ee85f47 100644 --- a/pkgs/lib/maintainers.nix +++ b/pkgs/lib/maintainers.nix @@ -26,6 +26,7 @@ ludo = "Ludovic Courtès "; marcweber = "Marc Weber "; mornfall = "Petr Ročkai "; + the-kenny = "Moritz Ulrich "; neznalek = "Vladimír Čunát "; orbitz = "Malcolm Matalka "; page = "Carles Pagès "; diff --git a/pkgs/misc/emulators/mupen64plus/1.5.nix b/pkgs/misc/emulators/mupen64plus/1.5.nix new file mode 100644 index 00000000000..d67121fe430 --- /dev/null +++ b/pkgs/misc/emulators/mupen64plus/1.5.nix @@ -0,0 +1,33 @@ +{stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: + +stdenv.mkDerivation { + name = "mupen64plus-1.5"; + src = fetchurl { + url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; + sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; + }; + + buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ]; + + preConfigure = '' + # Some C++ incompatibility fixes + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Main.cpp + sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Combine.cpp + + # Fix some hardcoded paths + sed -i -e "s|/usr/local|$out|g" main/main.c + + # Remove PATH environment variable from install script + sed -i -e "s|export PATH=|#export PATH=|" ./install.sh + ''; + + buildPhase = "make all"; + installPhase = "PREFIX=$out make install"; + + meta = { + description = "A Nintendo 64 Emulator"; + license = "GPLv2+"; + homepage = http://code.google.com/p/mupen64plus; + maintainers = [ stdenv.lib.maintainers.sander ]; + }; +} diff --git a/pkgs/misc/emulators/wine/winetricks.nix b/pkgs/misc/emulators/wine/winetricks.nix index 8a0901ddb80..71cc2767f69 100644 --- a/pkgs/misc/emulators/wine/winetricks.nix +++ b/pkgs/misc/emulators/wine/winetricks.nix @@ -7,6 +7,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://winetricks.googlecode.com/svn/trunk"; inherit rev; + sha256 = "01v13qw4sxmfm09g9amqycnzy743gdrhvv23rjr9255dzlrj1s8f"; }; buildInputs = [ perl which ]; diff --git a/pkgs/misc/emulators/wxmupen64plus/default.nix b/pkgs/misc/emulators/wxmupen64plus/default.nix new file mode 100644 index 00000000000..a85d0fb389e --- /dev/null +++ b/pkgs/misc/emulators/wxmupen64plus/default.nix @@ -0,0 +1,28 @@ +{stdenv, fetchurl, python, wxGTK29, mupen64plus, SDL, libX11, mesa}: + +stdenv.mkDerivation { + name = "wxmupen64plus-0.3"; + src = fetchurl { + url = "https://bitbucket.org/auria/wxmupen64plus/get/0.3.tar.bz2"; + sha256 = "1mnxi4k011dd300k35li2p6x4wccwi6im21qz8dkznnz397ps67c"; + }; + + buildInputs = [ python wxGTK29 SDL libX11 mesa ]; + + configurePhase = '' + tar xf ${mupen64plus.src} + APIDIR=$(eval echo `pwd`/mupen64plus*/source/mupen64plus-core/src/api) + export CXXFLAGS="-I${libX11}/include/X11 -DLIBDIR=\\\"${mupen64plus}/lib/\\\"" + export LDFLAGS="-lwx_gtk2u_adv-2.9" + python waf configure --mupenapi=$APIDIR --wxconfig=`type -P wx-config` --prefix=$out + ''; + + buildPhase = "python waf"; + installPhase = "python waf install"; + + meta = { + description = "GUI for the Mupen64Plus 2.0 emulator"; + license = "GPLv2+"; + homepage = https://bitbucket.org/auria/wxmupen64plus/wiki/Home; + }; +} diff --git a/pkgs/os-specific/linux/google-authenticator/default.nix b/pkgs/os-specific/linux/google-authenticator/default.nix new file mode 100644 index 00000000000..d7acc6778b4 --- /dev/null +++ b/pkgs/os-specific/linux/google-authenticator/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation rec { + name = "google-authenticator-1.0"; + + src = fetchurl { + url = "https://google-authenticator.googlecode.com/files/libpam-${name}-source.tar.bz2"; + sha1 = "017b7d89989f1624e360abe02d6b27a6298d285d"; + }; + + buildInputs = [ pam ]; + + installPhase = '' + ensureDir $out/bin $out/lib/security + cp pam_google_authenticator.so $out/lib/security + cp google-authenticator $out/bin + ''; + + meta = { + homepage = https://code.google.com/p/google-authenticator/; + description = "Two-step verification, with pam module"; + license = "ASL2.0"; + }; +} diff --git a/pkgs/os-specific/linux/kernel/linux-3.8.nix b/pkgs/os-specific/linux/kernel/linux-3.8.nix index 361d1f83a5c..54550885fa6 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.8.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.8.nix @@ -252,7 +252,7 @@ in import ./generic.nix ( rec { - version = "3.8.4"; + version = "3.8.5"; testing = false; preConfigure = '' @@ -261,7 +261,7 @@ import ./generic.nix ( src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/${if testing then "testing/" else ""}linux-${version}.tar.xz"; - sha256 = "0sxh4nwmj49n9l0rnfpgvgvgxx47mdfmpg5syvn854zfb5sv0fvy"; + sha256 = "1f1b6e09cb6ba656b28a41eb9e16e11576879f14574c0cb861b24734f3c5899f"; }; config = configWithPlatform stdenv.platform; diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix new file mode 100644 index 00000000000..fe5f938b75b --- /dev/null +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation rec { + name = "otpw-1.3"; + + src = fetchurl { + url = "http://www.cl.cam.ac.uk/~mgk25/download/${name}.tar.gz"; + sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; + }; + + patchPhase = '' + sed -i 's/^CFLAGS.*/CFLAGS=-O2 -fPIC/' Makefile + sed -i -e 's,PATH=.*;,,' conf.h + sed -i -e '/ENTROPY_ENV/d' otpw-gen.c + ''; + + installPhase = '' + ensureDir $out/bin $out/lib/security $out/share/man/man{1,8} + cp pam_*.so $out/lib/security + cp otpw-gen $out/bin + cp *.1 $out/share/man/man1 + cp *.8 $out/share/man/man8 + ''; + + buildInputs = [ pam ]; + + meta = { + homepage = http://www.cl.cam.ac.uk/~mgk25/otpw.html; + description = "A one-time password login package"; + license = "GPLv2+"; + }; +} diff --git a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch index 27facd4f3cc..568ad378012 100644 --- a/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch +++ b/pkgs/os-specific/linux/systemd/0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch @@ -1,7 +1,7 @@ -From ebbb4bc256e1ed53c594fc54d9e1a9faf5a5f77a Mon Sep 17 00:00:00 2001 +From 75bc507c854a8fe1f819a6b04ebe9e05cd9c425c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:44:33 +0100 -Subject: [PATCH 1/8] Make "systemctl daemon-reexec" do the right thing on +Subject: [PATCH 1/7] Make "systemctl daemon-reexec" do the right thing on NixOS --- diff --git a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch index c6a648678be..c9e9d806eb9 100644 --- a/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch +++ b/pkgs/os-specific/linux/systemd/0002-Ignore-duplicate-paths-in-systemctl-start.patch @@ -1,14 +1,14 @@ -From 64c36ac79fca8f0214faed8b7aff19b379b1ac1b Mon Sep 17 00:00:00 2001 +From b8acf19dbd37f801d5eeb76170f84bc8d75e464c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:45:01 +0100 -Subject: [PATCH 2/8] Ignore duplicate paths in "systemctl start" +Subject: [PATCH 2/7] Ignore duplicate paths in "systemctl start" --- src/systemctl/systemctl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c -index edd136a..86ce32a 100644 +index 1191c7a..4cd64f5 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1510,8 +1510,10 @@ static int start_unit_one( diff --git a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch index 23133547fd0..70eba00d22f 100644 --- a/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch +++ b/pkgs/os-specific/linux/systemd/0003-Start-device-units-for-uninitialised-encrypted-devic.patch @@ -1,7 +1,7 @@ -From 776093e73b86bcddfeb0971cb6267d13d07f0a81 Mon Sep 17 00:00:00 2001 +From 7e7d0ebc8617dfdae4ece9f5b66dc63031bb3fbc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:46:30 +0100 -Subject: [PATCH 3/8] Start device units for uninitialised encrypted devices +Subject: [PATCH 3/7] Start device units for uninitialised encrypted devices This is necessary because the NixOS service that initialises the filesystem depends on the appearance of the device unit. Also, this diff --git a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch index 483c1f81287..b25f65187d7 100644 --- a/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch +++ b/pkgs/os-specific/linux/systemd/0004-Set-switch-to-configuration-hints-for-some-units.patch @@ -1,7 +1,7 @@ -From 0bc7513439a8b77f62bc8ebcf220b77f83321b75 Mon Sep 17 00:00:00 2001 +From fa5fabd0123f2d5be7efa877f8dbbf0ae7b929da Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:48:19 +0100 -Subject: [PATCH 4/8] Set switch-to-configuration hints for some units +Subject: [PATCH 4/7] Set switch-to-configuration hints for some units MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit diff --git a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch index 9efbba08ab9..d94890dccc1 100644 --- a/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch +++ b/pkgs/os-specific/linux/systemd/0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch @@ -1,7 +1,7 @@ -From 5337d8f5a555f83ba8731472a2f3b0d36ac607d9 Mon Sep 17 00:00:00 2001 +From c2dce9a0088f7d155659bcbf1e9e69467e679244 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 15:56:03 +0100 -Subject: [PATCH 5/8] sysinit.target: Drop the dependency on local-fs.target +Subject: [PATCH 5/7] sysinit.target: Drop the dependency on local-fs.target and swap.target Having all services with DefaultDependencies=yes depend on diff --git a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch index f0be5b34f0c..9e4995dfc1f 100644 --- a/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch +++ b/pkgs/os-specific/linux/systemd/0006-Don-t-call-plymouth-quit.patch @@ -1,7 +1,7 @@ -From b944fede26773167cb6a9f86888a9209dda4c35e Mon Sep 17 00:00:00 2001 +From f1b273a7203da1dd3ef51529b5b2e481c7a8d999 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 8 Jan 2013 18:36:28 +0100 -Subject: [PATCH 6/8] Don't call "plymouth quit" +Subject: [PATCH 6/7] Don't call "plymouth quit" NixOS doesn't use Plymouth (yet). --- diff --git a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch index 32aca8b10aa..fb59b676e51 100644 --- a/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch +++ b/pkgs/os-specific/linux/systemd/0007-Ignore-IPv6-link-local-addresses.patch @@ -1,7 +1,7 @@ -From b9f175c7b3ea6ac34d148f5afba598f985c5b9fe Mon Sep 17 00:00:00 2001 +From 61fa587560634d5c71a62a4a2fc2a37eb043e9a4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 4 Feb 2013 12:41:14 +0100 -Subject: [PATCH 7/8] Ignore IPv6 link-local addresses +Subject: [PATCH 7/7] Ignore IPv6 link-local addresses Returning IPv6 link-local addresses is a bad idea, because they only work if an application connects specifically over the corresponding diff --git a/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch b/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch deleted file mode 100644 index 92411c16650..00000000000 --- a/pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch +++ /dev/null @@ -1,28 +0,0 @@ -From dcfb048af5face4787ecdf29c00454898c52963d Mon Sep 17 00:00:00 2001 -From: Eelco Dolstra -Date: Wed, 27 Mar 2013 13:33:09 +0100 -Subject: [PATCH 8/8] systemd-sysctl: Handle missing /etc/sysctl.conf properly - -Since fabe5c0e5fce730aa66e10a9c4f9fdd443d7aeda, systemd-sysctl returns -a non-zero exit code if /etc/sysctl.conf does not exist, due to a -broken ENOENT check. ---- - src/sysctl/sysctl.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c -index 2d43660..79f3f77 100644 ---- a/src/sysctl/sysctl.c -+++ b/src/sysctl/sysctl.c -@@ -125,7 +125,7 @@ static int parse_file(Hashmap *sysctl_options, const char *path, bool ignore_eno - - r = search_and_fopen_nulstr(path, "re", conf_file_dirs, &f); - if (r < 0) { -- if (ignore_enoent && errno == -ENOENT) -+ if (ignore_enoent && r == -ENOENT) - return 0; - - log_error("Failed to open file '%s', ignoring: %s", path, strerror(-r)); --- -1.8.1 - diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 76769d4d3e6..dfa99959b30 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -6,11 +6,11 @@ assert stdenv.gcc.libc or null != null; stdenv.mkDerivation rec { - name = "systemd-199"; + name = "systemd-200"; src = fetchurl { url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz"; - sha256 = "1vazjqi95pri5zx21gs4chyd7c8kg5lf1rc26w47zkry9yh64i4c"; + sha256 = "05y2r25441nznif5xi5gab4c6xdywiqzgcl3nsmg0j2wzalbl24s"; }; patches = @@ -21,7 +21,6 @@ stdenv.mkDerivation rec { ./0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch ./0006-Don-t-call-plymouth-quit.patch ./0007-Ignore-IPv6-link-local-addresses.patch - ./0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch ] ++ stdenv.lib.optional stdenv.isArm ./libc-bug-accept4-arm.patch; buildInputs = @@ -74,8 +73,6 @@ stdenv.mkDerivation rec { # Work around our kernel headers being too old. FIXME: remove # this after the next stdenv update. "-DFS_NOCOW_FL=0x00800000" - # Enable udev's firmware builtin for now. - "-DENABLE_FIRMWARE=1" ]; # Use /var/lib/udev rather than /etc/udev for the generated hardware diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix index b3d94e26396..8f441303c25 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -38,13 +38,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - patches = - [ (fetchurl { - url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/hostap_allow-linking-with-libnl-3.2.patch?h=packages/wpa_supplicant"; - name = "hostap_allow-linking-with-libnl-3.2.patch"; - sha256 = "0iwvjq0apc6mv1r03k5pnyjgda3q47yx36c4lqvv8i8q1vn7kbf2"; - }) - ]; + patches = [ ./libnl.patch ]; postInstall = '' mkdir -p $out/share/man/man5 $out/share/man/man8 diff --git a/pkgs/os-specific/linux/wpa_supplicant/libnl.patch b/pkgs/os-specific/linux/wpa_supplicant/libnl.patch new file mode 100644 index 00000000000..ede6dad721c --- /dev/null +++ b/pkgs/os-specific/linux/wpa_supplicant/libnl.patch @@ -0,0 +1,13 @@ +diff -up wpa_supplicant-1.0-rc2/src/drivers/drivers.mak.foo wpa_supplicant-1.0-rc2/src/drivers/drivers.mak +--- wpa_supplicant-1.0-rc2/src/drivers/drivers.mak.foo 2012-03-02 16:11:43.176448714 -0600 ++++ wpa_supplicant-1.0-rc2/src/drivers/drivers.mak 2012-03-02 16:12:29.759866341 -0600 +@@ -48,7 +48,7 @@ NEED_RFKILL=y + ifdef CONFIG_LIBNL32 + DRV_LIBS += -lnl-3 + DRV_LIBS += -lnl-genl-3 +- DRV_CFLAGS += -DCONFIG_LIBNL20 ++ DRV_CFLAGS += -DCONFIG_LIBNL20 `pkg-config --cflags libnl-3.0` + else + ifdef CONFIG_LIBNL_TINY + DRV_LIBS += -lnl-tiny + diff --git a/pkgs/os-specific/windows/pthread-w32/default.nix b/pkgs/os-specific/windows/pthread-w32/default.nix index 39afd119643..cd417eb9ad0 100644 --- a/pkgs/os-specific/windows/pthread-w32/default.nix +++ b/pkgs/os-specific/windows/pthread-w32/default.nix @@ -28,6 +28,14 @@ stdenv.mkDerivation { cp -v pthread.h semaphore.h sched.h "$out/include" ''; + postFixup = + # By default `mingw_headers' is propagated. Prevent that, because + # otherwise MinGW headers appear twice in `-I', and thus the + # "#include_next " in MinGW's picks up itself instead + # of picking up GCC's (hence, FLT_RADIX is left undefined, for instance.) + '' rm -f "$out/nix-support/propagated-build-inputs" + ''; + meta = { description = "POSIX threads for Woe32"; diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 54fa398a8e9..d9a9b6b2432 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.9.2"; in +let version = "9.9.2-P2"; in stdenv.mkDerivation rec { @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "0j4v01ch4xkgnsnngmh6bpapzi53n4k79gbbhmxf44nmk2qk0rby"; + sha256 = "1lk5npyr6bkm4gs2m90k4s8lmlcpfdphzqhi2hjnj2amwcs2g0pz"; }; patchPhase = '' @@ -22,9 +22,11 @@ stdenv.mkDerivation rec { "--localstatedir=/var" ]; meta = { - homepage = http://www.isc.org/software/bind; + homepage = "http://www.isc.org/software/bind"; description = "ISC BIND: a domain name server"; - maintainers = with stdenv.lib.maintainers; [viric]; + license = stdenv.lib.licenses.isc; + + maintainers = with stdenv.lib.maintainers; [viric simons]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/servers/prayer/default.nix b/pkgs/servers/prayer/default.nix index f105920ab81..8a23e480e1f 100644 --- a/pkgs/servers/prayer/default.nix +++ b/pkgs/servers/prayer/default.nix @@ -5,11 +5,11 @@ let "-e 's/CCLIENT_SSL_ENABLE.*= false/CCLIENT_SSL_ENABLE=true/'"; in stdenv.mkDerivation rec { - name = "prayer-1.3.4"; + name = "prayer-1.3.5"; src = fetchurl { url = "ftp://ftp.csx.cam.ac.uk/pub/software/email/prayer/${name}.tar.gz"; - sha256 = "0a2nmrlwdq4n5019j3mw2xbbc61s7sssjih5ql6r5rvyrrr48szc"; + sha256 = "135fjbxjn385b6cjys6qhbwfw61mdcl2akkll4jfpdzfvhbxlyda"; }; buildInputs = [ openssl db4 zlib uwimap htmlTidy pam ]; diff --git a/pkgs/servers/varnish/default.nix b/pkgs/servers/varnish/default.nix new file mode 100644 index 00000000000..528c03e3aa3 --- /dev/null +++ b/pkgs/servers/varnish/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig }: + +stdenv.mkDerivation rec { + version = "3.0.3"; + name = "varnish-${version}"; + + src = fetchurl { + url = "http://repo.varnish-cache.org/source/${name}.tar.gz"; + sha256 = "1cla2igwfwcm07srvk0z9cqdxh74sga0c1rsmh4b4n1gjn6x2drd"; + }; + + buildInputs = [ pcre libxslt groff ncurses pkgconfig ]; + + meta = { + description = "Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy."; + homepage = "https://www.varnish-cache.org"; + license = stdenv.lib.licenses.bsd2; + maintainers = [ stdenv.lib.maintainers.garbas ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index cba6a6d0cf4..e9c310b84f1 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -153,6 +153,11 @@ in installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/include/xorg"; }; + xf86inputvoid = attrs: attrs // { + NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; + buildInputs = attrs.buildInputs ++ [xorg.pixman]; + }; + xf86videointel = attrs: attrs // { buildInputs = attrs.buildInputs ++ [xorg.glproto args.mesa]; }; @@ -172,6 +177,11 @@ in buildInputs = attrs.buildInputs ++ [xorg.pixman]; }; + xf86videodummy = attrs: attrs // { + NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; + buildInputs = attrs.buildInputs ++ [xorg.pixman]; + }; + xf86videofbdev = attrs: attrs // { NIX_CFLAGS_COMPILE = "-I${xorg.pixman}/include/pixman-1"; buildInputs = attrs.buildInputs ++ [xorg.pixman]; diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index 929332275fc..8427386fe86 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -1,44 +1,40 @@ -{ stdenv, fetchurl, pkgconfig, python, cython -, pygtk, pygobject, pycairo, notify, xlibs, gtk -, ffmpeg, x264, libvpx, makeWrapper}: +{ stdenv, fetchurl, buildPythonPackage +, python, cython, pkgconfig +, xorg, gtk, glib, pango, cairo, gdk_pixbuf, pygtk, atk, pygobject, pycairo +, ffmpeg_1_1, x264, libvpx, pil, libwebp }: -stdenv.mkDerivation rec { - name = "xpra-0.3.2"; +buildPythonPackage rec { + name = "xpra-0.8.8"; src = fetchurl { - url = http://xpra.org/src/xpra-0.3.2.tar.bz2; - sha256 = "1s1z6r0r78qvf59ci3vxammjz7lj5m64jyk0bfn7yxd5jl3sy41y"; + url = "http://xpra.org/src/${name}.tar.bz2"; + sha256 = "248bac50c78eccfbc7f728667f9d0ef26b101b288193fa286881cda452e63683"; }; - nativeBuildInputs = [ cython ]; + buildInputs = [ + python cython pkgconfig - buildInputs = [ - pkgconfig python pygtk gtk ffmpeg x264 libvpx makeWrapper - xlibs.inputproto xlibs.libXcomposite xlibs.libXdamage xlibs.libXtst + xorg.libX11 xorg.renderproto xorg.libXrender xorg.libXi xorg.inputproto xorg.kbproto + xorg.randrproto xorg.damageproto xorg.compositeproto xorg.xextproto xorg.recordproto + xorg.xproto xorg.fixesproto xorg.libXtst xorg.libXfixes xorg.libXcomposite xorg.libXdamage + xorg.libXrandr + + pango cairo gdk_pixbuf atk gtk glib + + ffmpeg_1_1 libvpx x264 libwebp ]; + propagatedBuildInputs = [ + pil pygtk pygobject + ]; + + # Even after i tried monkey patching, their tests just fail, looks like + # they don't have automated testing out of the box? http://xpra.org/trac/ticket/177 + doCheck = false; + buildPhase = '' - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0)" - NIX_LDFLAGS="$NIX_LDFLAGS -lXcomposite -lXdamage" - ./do-build - ''; - - pythonPaths = [ - "$out/lib/python" - "$(toPythonPath ${pygtk})/gtk-2.0" - ] ++ map (i: "$(toPythonPath ${i})") [ - pygobject pycairo notify - ]; - - installPhase = '' - mkdir -p $out - cp -r install/* $out - - for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i \ - --set PYTHONPATH "${stdenv.lib.concatStringsSep ":" pythonPaths}" \ - --prefix PATH : "${xlibs.xauth}/bin:${xlibs.xorgserver}/bin:${xlibs.xmodmap}/bin" - done + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" + python ./setup.py build --enable-Xdummy ''; meta = { diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix new file mode 100644 index 00000000000..7de503adc07 --- /dev/null +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -0,0 +1,22 @@ +{stdenv, fetchurl, automake, autoconf, flex, bison }: + +stdenv.mkDerivation { + name = "cuetools-1.3.1"; + + src = fetchurl { + url = https://github.com/svend/cuetools/archive/cuetools-1.3.1.tar.gz; + sha256 = "1cap3wl0mlcqrjywpz46003w8jws05rr3r87pzqkz1g89v9459dg"; + }; + + preConfigure = "autoreconf -fiv"; + + buildInputs = [ automake autoconf flex bison ]; + + meta = { + description = "cd/dvd cue and toc file parsers and utilities"; + homepage = https://github.com/svend/cuetools; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ jcumming ]; + }; +} diff --git a/pkgs/tools/misc/multitail/default.nix b/pkgs/tools/misc/multitail/default.nix new file mode 100644 index 00000000000..19bebcf2823 --- /dev/null +++ b/pkgs/tools/misc/multitail/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, ncurses }: + +stdenv.mkDerivation { + name = "multitail-5.2.12"; + + src = fetchurl { + url = http://www.vanheusden.com/multitail/multitail-5.2.12.tgz; + sha256 = "681d87cd49e11aab1d82ad7818ee639c88a3d305db8accf0859977beda6c493c"; + }; + + buildInputs = [ ncurses ]; + + installPhase = '' + ensureDir $out/bin + cp multitail $out/bin + ''; + + meta = { + homepage = http://www.vanheusden.com/multitail/; + description = "tail on Steroids"; + }; +} diff --git a/pkgs/tools/networking/aircrack-ng/default.nix b/pkgs/tools/networking/aircrack-ng/default.nix index c616ba9ee16..be4bfb20dfa 100644 --- a/pkgs/tools/networking/aircrack-ng/default.nix +++ b/pkgs/tools/networking/aircrack-ng/default.nix @@ -1,7 +1,7 @@ {stdenv, fetchsvn, libpcap, openssl, zlib, wirelesstools}: let - rev = "2212"; + rev = "2268"; in stdenv.mkDerivation rec { name = "aircrack-ng-1.1-${rev}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://trac.aircrack-ng.org/svn/trunk"; inherit rev; - sha256 = "80e567b4e4bc501721cd58f7efadcd13fc3b235a41486174826694a6e701ce09"; + sha256 = "0zjkk3s65v9w92fhzhyknhjcsx6whcm0an0qcawn2ggs0n0ss9ij"; }; buildInputs = [libpcap openssl zlib]; diff --git a/pkgs/tools/networking/network-manager-applet/default.nix b/pkgs/tools/networking/network-manager-applet/default.nix index d38bbcae014..8f6058d2078 100644 --- a/pkgs/tools/networking/network-manager-applet/default.nix +++ b/pkgs/tools/networking/network-manager-applet/default.nix @@ -1,6 +1,7 @@ { stdenv, fetchurl, intltool, pkgconfig, gtk, libglade, networkmanager, GConf , libnotify, libgnome_keyring, dbus_glib, polkit, isocodes -, mobile_broadband_provider_info }: +, mobile_broadband_provider_info, glib_networking, gsettings_desktop_schemas +, makeWrapper }: let pn = "network-manager-applet"; @@ -18,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk libglade networkmanager GConf libnotify libgnome_keyring dbus_glib - polkit isocodes + polkit isocodes makeWrapper ]; nativeBuildInputs = [ intltool pkgconfig ]; @@ -27,6 +28,14 @@ stdenv.mkDerivation rec { ''CFLAGS=-DMOBILE_BROADBAND_PROVIDER_INFO=\"${mobile_broadband_provider_info}/share/mobile-broadband-provider-info/serviceproviders.xml\"'' ]; + postInstall = '' + wrapProgram "$out/bin/nm-applet" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/share" \ + --set GCONF_CONFIG_SOURCE "xml::~/.gconf" \ + --prefix PATH ":" "${GConf}/bin" + ''; + meta = with stdenv.lib; { homepage = http://projects.gnome.org/NetworkManager/; description = "NetworkManager control applet for GNOME"; diff --git a/pkgs/tools/networking/weighttp/default.nix b/pkgs/tools/networking/weighttp/default.nix new file mode 100644 index 00000000000..3bf23275a18 --- /dev/null +++ b/pkgs/tools/networking/weighttp/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, python, libev}: +stdenv.mkDerivation { + name = "weighttp-0.3"; + src = fetchurl { + url = http://cgit.lighttpd.net/weighttp.git/snapshot/weighttp-0.3.tar.gz; + sha256 = "0gl83vnip3nj7fdgbwqkmrx7kxp51sri9jfiwd04q9iz8f9bsmz5"; + }; + + buildInputs = [ python libev ]; + installPhase = '' + python waf configure --prefix=$out + python waf build + python waf install + ''; +} diff --git a/pkgs/tools/security/oath-toolkit/default.nix b/pkgs/tools/security/oath-toolkit/default.nix new file mode 100644 index 00000000000..58786f1bd61 --- /dev/null +++ b/pkgs/tools/security/oath-toolkit/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation rec { + name = "oath-toolkit-2.0.2"; + + src = fetchurl { + url = "http://download.savannah.gnu.org/releases/oath-toolkit/${name}.tar.gz"; + sha256 = "0i2rf5j83kb8h3sd9lsm0a46zq805kzagvccc4rk7879lg1fnl99"; + }; + + buildInputs = [ pam ]; + + meta = { + homepage = http://www.nongnu.org/oath-toolkit/; + description = "Components for building one-time password authentication systems"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/security/pwgen/default.nix b/pkgs/tools/security/pwgen/default.nix index 72ca4c987c5..ecbc95362e6 100644 --- a/pkgs/tools/security/pwgen/default.nix +++ b/pkgs/tools/security/pwgen/default.nix @@ -8,5 +8,6 @@ stdenv.mkDerivation { }; meta = { description = "Small, GPL'ed password generator which creates passwords which can be easily memorized by a human."; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/tools/text/wgetpaste/default.nix b/pkgs/tools/text/wgetpaste/default.nix index 63313872ede..04102093aae 100644 --- a/pkgs/tools/text/wgetpaste/default.nix +++ b/pkgs/tools/text/wgetpaste/default.nix @@ -23,5 +23,6 @@ homepage = http://wgetpaste.zlin.dk/; license = "publicDomain"; maintainers = with stdenv.lib.maintainers; [qknight]; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3935eb3792e..b2302974161 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -579,6 +579,8 @@ let cowsay = callPackage ../tools/misc/cowsay { }; + cuetools = callPackage ../tools/cd-dvd/cuetools { }; + unifdef = callPackage ../development/tools/misc/unifdef { }; "unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { }; @@ -879,6 +881,8 @@ let gnuvd = callPackage ../tools/misc/gnuvd { }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; + gource = callPackage ../applications/version-management/gource {}; gptfdisk = callPackage ../tools/system/gptfdisk { }; @@ -1052,6 +1056,8 @@ let most = callPackage ../tools/misc/most { }; + multitail = callPackage ../tools/misc/multitail { }; + netperf = callPackage ../applications/networking/netperf { }; ninka = callPackage ../development/tools/misc/ninka { }; @@ -1269,6 +1275,8 @@ let nzbget = callPackage ../tools/networking/nzbget { }; + oathToolkit = callPackage ../tools/security/oath-toolkit { }; + obex_data_server = callPackage ../tools/bluetooth/obex-data-server { }; obexd = callPackage ../tools/bluetooth/obexd { }; @@ -1317,6 +1325,8 @@ let ossec = callPackage ../tools/security/ossec {}; + otpw = callPackage ../os-specific/linux/otpw { }; + p7zip = callPackage ../tools/archivers/p7zip { }; pal = callPackage ../tools/misc/pal { }; @@ -1785,6 +1795,8 @@ let uptimed = callPackage ../tools/system/uptimed { }; + varnish = callPackage ../servers/varnish { }; + vlan = callPackage ../tools/networking/vlan { }; wakelan = callPackage ../tools/networking/wakelan { }; @@ -1806,6 +1818,8 @@ let libxml2 geoip; }; + weighttp = callPackage ../tools/networking/weighttp { }; + wget = callPackage ../tools/networking/wget { inherit (perlPackages) LWP; }; @@ -1942,6 +1956,8 @@ let bigloo = callPackage ../development/compilers/bigloo { }; + chicken = callPackage ../development/compilers/chicken { }; + ccl = builderDefsPackage ../development/compilers/ccl {}; clangUnwrapped = callPackage ../development/compilers/llvm/clang.nix { @@ -5220,6 +5236,8 @@ let jvm = gcj; xerces = xercesJava; }; + xmlsec = callPackage ../development/libraries/xmlsec { }; + zziplib = callPackage ../development/libraries/zziplib { }; @@ -5234,6 +5252,7 @@ let perlPackages = recurseIntoAttrs (import ./perl-packages.nix { inherit pkgs; + __overrides = (config.perlPackageOverrides or (p: {})) pkgs; }); perl510Packages = import ./perl-packages.nix { @@ -5241,6 +5260,7 @@ let perl = perl510; buildPerlPackage = import ../development/perl-modules/generic perl510; }; + __overrides = (config.perl510PackageOverrides or (p: {})) pkgs; }; perlXMLParser = perlPackages.XMLParser; @@ -5270,9 +5290,10 @@ let python = python27; }); - plone42Packages = recurseIntoAttrs (import ../development/web/plone { - inherit pkgs buildPythonPackage; + plone43Packages = recurseIntoAttrs (import ../development/web/plone { + inherit pkgs; python = python27; + pythonPackages = python27Packages; }); foursuite = callPackage ../development/python-modules/4suite { }; @@ -6014,6 +6035,8 @@ let linuxPackages_3_6_rpi = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_6_rpi linuxPackages_3_6_rpi); linuxPackages_3_7 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_7 linuxPackages_3_7); linuxPackages_3_8 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_8 linuxPackages_3_8); + # Update this when adding a new version! + linuxPackages_latest = pkgs.linuxPackages_3_8; # The current default kernel / kernel modules. linux = linuxPackages.kernel; @@ -6307,7 +6330,7 @@ let }; pthreads = callPackage ../os-specific/windows/pthread-w32 { - mingw_headers = mingw_headers2; + mingw_headers = mingw_headers3; }; wxMSW = callPackage ../os-specific/windows/wxMSW-2.8 { }; @@ -7525,6 +7548,10 @@ let ogmtools = callPackage ../applications/video/ogmtools { }; + omxplayer = callPackage ../applications/video/omxplayer { + stdenv = overrideGCC stdenv gcc47; + }; + oneteam = callPackage ../applications/networking/instant-messengers/oneteam {}; openbox = callPackage ../applications/window-managers/openbox { }; @@ -7637,7 +7664,9 @@ let ratpoison = callPackage ../applications/window-managers/ratpoison { }; - rawtherapee = callPackage ../applications/graphics/rawtherapee { }; + rawtherapee = callPackage ../applications/graphics/rawtherapee { + fftw = fftw.override {float = true;}; + }; rcs = callPackage ../applications/version-management/rcs { }; @@ -7691,6 +7720,10 @@ let dropbox = callPackage ../applications/networking/dropbox { }; + lightdm = callPackage ../applications/display-managers/lightdm { }; + + lightdm_gtk_greeter = callPackage ../applications/display-managers/lightdm-gtk-greeter { }; + slim = callPackage ../applications/display-managers/slim { }; sndBase = builderDefsPackage (import ../applications/audio/snd) { @@ -7705,6 +7738,8 @@ let guile = guile_1_8; }; + shntool = callPackage ../applications/audio/shntool { }; + sonic_visualiser = callPackage ../applications/audio/sonic-visualiser { inherit (pkgs.vamp) vampSDK; inherit (pkgs.xlibs) libX11; @@ -8048,9 +8083,7 @@ let libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { }; - xpra = callPackage ../tools/X11/xpra { - inherit (pythonPackages) notify; - }; + xpra = callPackage ../tools/X11/xpra { }; xscreensaver = callPackage ../misc/screensavers/xscreensaver { inherit (gnome) libglade; @@ -8281,7 +8314,7 @@ let # You still can override by passing more arguments. spaceOrbit = callPackage ../games/orbit { }; - spring = callPackage ../games/spring { boost = boost149;}; + spring = callPackage ../games/spring { }; springLobby = callPackage ../games/spring/springlobby.nix { }; @@ -8858,6 +8891,8 @@ let mupen64plus = callPackage ../misc/emulators/mupen64plus { }; + mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { }; + nix = nixStable; nixStable = callPackage ../tools/package-management/nix { @@ -9045,6 +9080,8 @@ let inherit (gnome2) zenity; }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + x2x = callPackage ../tools/X11/x2x { }; xosd = callPackage ../misc/xosd { }; diff --git a/pkgs/top-level/haskell-defaults.nix b/pkgs/top-level/haskell-defaults.nix index e7e206e2266..aa71d75f12e 100644 --- a/pkgs/top-level/haskell-defaults.nix +++ b/pkgs/top-level/haskell-defaults.nix @@ -111,7 +111,6 @@ monadPar = self.monadPar_0_1_0_3; # deviating from Haskell platform here, to make some packages (notably statistics) compile jailbreakCabal = self.jailbreakCabal.override { Cabal = self.disableTest self.Cabal_1_14_0; }; - cabal2nix = self.cabal2nix.override { Cabal = self.Cabal_1_16_0_3; hackageDb = self.hackageDb.override { Cabal = self.Cabal_1_16_0_3; }; }; }; # Abstraction for Haskell packages collections diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 37fe7cbe281..610f26d5541 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -150,7 +150,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); regexBase = self.regexBase_0_93_2; # 7.6 ok regexCompat = self.regexCompat_0_95_1; # 7.6 ok regexPosix = self.regexPosix_0_95_2; # 7.6 ok - split = self.split_0_2_1_2; # 7.6 ok + split = self.split_0_2_1_3; # 7.6 ok stm = self.stm_2_4_2; # 7.6 ok syb = self.syb_0_4_0; # 7.6 ok text = self.text_0_11_2_3; # 7.6 ok @@ -444,7 +444,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); accelerate = callPackage ../development/libraries/haskell/accelerate {}; - accelerateCuda = callPackage ../development/libraries/haskell/accelerate-cuda {}; + accelerateCuda = callPackage ../development/libraries/haskell/accelerate-cuda { + languageCQuote = self.languageCQuote_0_4_4; + }; accelerateExamples = callPackage ../development/libraries/haskell/accelerate-examples {}; @@ -1189,7 +1191,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); languageC_0_3_2_1 = callPackage ../development/libraries/haskell/language-c/0.3.2.1.nix {}; languageC = self.languageC_0_4_2; - languageCQuote = callPackage ../development/libraries/haskell/language-c-quote/default.nix {}; + languageCQuote_0_4_4 = callPackage ../development/libraries/haskell/language-c-quote/0.4.4.nix {}; + languageCQuote_0_7_1 = callPackage ../development/libraries/haskell/language-c-quote/0.7.1.nix {}; + languageCQuote = self.languageCQuote_0_7_1; languageJavascript = callPackage ../development/libraries/haskell/language-javascript {}; @@ -1508,6 +1512,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); QuickCheck2 = self.QuickCheck_2_6; QuickCheck = self.QuickCheck2; + quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {}; + RangedSets = callPackage ../development/libraries/haskell/Ranged-sets {}; random_1_0_1_1 = callPackage ../development/libraries/haskell/random/1.0.1.1.nix {}; @@ -1695,8 +1701,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); SMTPClient = callPackage ../development/libraries/haskell/SMTPClient {}; split_0_2_1_1 = callPackage ../development/libraries/haskell/split/0.2.1.1.nix {}; - split_0_2_1_2 = callPackage ../development/libraries/haskell/split/0.2.1.2.nix {}; - split = self.split_0_2_1_2; + split_0_2_1_3 = callPackage ../development/libraries/haskell/split/0.2.1.3.nix {}; + split = self.split_0_2_1_3; stbImage = callPackage ../development/libraries/haskell/stb-image {}; diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index 48a21d04bcf..06f7ad321bb 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -43,7 +43,7 @@ let self = { amdefine = "amdefine-0.0.4"; "amdefine->=0.0.4" = self."amdefine-0.0.4"; - + "amdefine-0.0.4" = self.buildNodePackage rec { name = "amdefine-0.0.4"; src = fetchurl { @@ -94,6 +94,20 @@ let self = { ]; }; + "aws-sdk" = self."aws-sdk-*"; + + "aws-sdk-*" = self.buildNodePackage rec { + name = "aws-sdk-0.9.7-pre.8"; + src = self.patchLatest { + url = "http://registry.npmjs.org/aws-sdk/-/${name}.tgz"; + sha256 = "d3854275981fff76153f79c62745d8d6c59018861729766908c920fff95ea422"; + }; + deps = [ + self."xml2js-0.2.4" + self."xmlbuilder" + ]; + }; + "backbone" = self."backbone-0.9.2"; "backbone-0.9.2" = self.buildNodePackage rec { @@ -270,6 +284,17 @@ let self = { "commander" = self."commander-~0.6.1"; + "commander-0.5.1" = self.buildNodePackage rec { + name = "commander-0.5.1"; + src = fetchurl { + url = "http://registry.npmjs.org/commander/-/${name}.tgz"; + sha256 = "91042851d0731b28a5e7c342e5cbce7723a7243d31ae378fa86c45ca9493a924"; + }; + deps = [ + + ]; + }; + "commander-~0.6.1" = self.buildNodePackage rec { name = "commander-0.6.1"; src = fetchurl { @@ -569,6 +594,47 @@ let self = { ]; }; + "htdigest" = self."htdigest-1.0.7"; + + "htdigest-1.0.7" = self.buildNodePackage rec { + name = "htdigest-1.0.7"; + src = fetchurl { + url = "http://registry.npmjs.org/htdigest/-/${name}.tgz"; + sha256 = "10fb047addf1c4f1089a26389066d5ff8f5ffa1ccce272a701bb4c2a30d90c58"; + }; + deps = [ + self."commander-0.5.1" + ]; + }; + + "htpasswd" = self."htpasswd-1.1.0"; + + "htpasswd-1.1.0" = self.buildNodePackage rec { + name = "htpasswd-1.1.0"; + src = fetchurl { + url = "http://registry.npmjs.org/htpasswd/-/${name}.tgz"; + sha256 = "cee9c0a525e717e3565ba6ffea8a64c480bc8a9e7800cb9bfc385d1a8e713ec9"; + }; + deps = [ + self."commander-0.5.1" + ]; + }; + + "http-auth" = self."http-auth-*"; + + "http-auth-*" = self.buildNodePackage rec { + name = "http-auth-1.2.7"; + src = fetchurl { + url = "http://registry.npmjs.org/http-auth/-/${name}.tgz"; + sha256 = "874dbb5907d03602f31eae959a0927a3112da8e868231d9a2119bb50d2fe63d2"; + }; + deps = [ + self."node-uuid-1.2.0" + self."htpasswd-1.1.0" + self."htdigest-1.0.7" + ]; + }; + "http-signature" = self."http-signature-0.9.9"; "http-signature-0.9.9" = self.buildNodePackage rec { @@ -805,6 +871,17 @@ let self = { "node-uuid" = self."node-uuid-1.3.3"; + "node-uuid-1.2.0" = self.buildNodePackage rec { + name = "node-uuid-1.2.0"; + src = fetchurl { + url = "http://registry.npmjs.org/node-uuid/-/${name}.tgz"; + sha256 = "96d3ce178ea0825d27a855630de74243a577dc988512512eea572829b208a3d2"; + }; + deps = [ + + ]; + }; + "node-uuid-1.3.3" = self.buildNodePackage rec { name = "node-uuid-1.3.3"; src = fetchurl { @@ -897,7 +974,7 @@ let self = { }; "optparse" = self."optparse-1.0.3"; - + "optparse-1.0.3" = self.buildNodePackage rec { name = "optparse-1.0.3"; src = fetchurl { @@ -905,7 +982,7 @@ let self = { sha256 = "1cg99i4rq8azxikzqz0ykw4q971azbj49d3m7slj041yscb6m883"; }; deps = [ - + ]; }; @@ -1115,6 +1192,19 @@ let self = { ]; }; + "sax" = self."sax->=0.4.2"; + + "sax->=0.4.2" = self.buildNodePackage rec { + name = "sax-0.5.2"; + src = fetchurl { + url = "http://registry.npmjs.org/sax/-/${name}.tgz"; + sha256 = "6bb7cd44e9dfea598997d4ba9d3279dafe75bed7b45904561ca9eb4d85cfd953"; + }; + deps = [ + + ]; + }; + "semver" = self."semver-1"; "semver-1" = self."semver-1.0.14"; @@ -1261,9 +1351,9 @@ let self = { self."requirejs-==0.26.0" ]; }; - + "swig" = self."swig-0.13.2"; - + "swig-0.13.2" = self.buildNodePackage rec { name = "swig-0.13.2"; src = fetchurl { @@ -1448,6 +1538,32 @@ let self = { ]; }; + "xml2js" = self."xml2js-0.2.4"; + + "xml2js-0.2.4" = self.buildNodePackage rec { + name = "xml2js-0.2.4"; + src = fetchurl { + url = "http://registry.npmjs.org/xml2js/-/${name}.tgz"; + sha256 = "8daebb075fc7c564d84221a0cef7825ac824db8e312f873daee59a6adf38da28"; + }; + deps = [ + self."sax->=0.4.2" + ]; + }; + + "xmlbuilder" = self."xmlbuilder-*"; + + "xmlbuilder-*" = self.buildNodePackage rec { + name = "xmlbuilder-0.4.2"; + src = fetchurl { + url = "http://registry.npmjs.org/xmlbuilder/-/${name}.tgz"; + sha256 = "3137e5bf9db1f114767f8ba56be753f2a9f512e38a2df64d7677ae3c9318a0fe"; + }; + deps = [ + + ]; + }; + "xmlhttprequest" = self."xmlhttprequest-1.2.2"; "xmlhttprequest-1.2.2" = self.buildNodePackage rec { diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 4291fde5908..2856ae88e37 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5,12 +5,14 @@ for each package in a separate file: the call to the function would be almost as must code as the function itself. */ -{pkgs}: +{pkgs, __overrides}: rec { inherit (pkgs) buildPerlPackage fetchurl stdenv perl fetchsvn; + inherit __overrides; + # Helper functions for packages that use Module::Build to build. buildPerlModule = { buildInputs ? [], ... } @ args: buildPerlPackage (args // { diff --git a/pkgs/top-level/platforms.nix b/pkgs/top-level/platforms.nix index b1406c615bd..3c53be875e3 100644 --- a/pkgs/top-level/platforms.nix +++ b/pkgs/top-level/platforms.nix @@ -105,7 +105,7 @@ rec { FUSE_FS m - # nixos mounts some cgroup + # systemd uses cgroups CGROUPS y # Latencytop @@ -307,6 +307,12 @@ rec { kernelAutoModules = false; kernelExtraConfig = '' + MIGRATION n + COMPACTION n + + # nixos mounts some cgroup + CGROUPS y + BLK_DEV_RAM y BLK_DEV_INITRD y BLK_DEV_CRYPTOLOOP m @@ -360,6 +366,9 @@ rec { EXT3_FS y REISERFS_FS y MAGIC_SYSRQ y + + # The kernel doesn't boot at all, with FTRACE + FTRACE n ''; kernelTarget = "vmlinux"; uboot = null; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index effde24da99..29f2e181f3d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -58,6 +58,11 @@ pythonPackages = python.modules // rec { inherit python buildPythonPackage; }; + pitz = import ../applications/misc/pitz { + inherit (pkgs) stdenv fetchurl; + inherit buildPythonPackage tempita jinja2 pyyaml clepy mock nose decorator docutils; + }; + pycairo = import ../development/python-modules/pycairo { inherit (pkgs) stdenv fetchurl pkgconfig cairo x11; inherit python; @@ -589,6 +594,24 @@ pythonPackages = python.modules // rec { }; }); + + clepy = buildPythonPackage rec { + name = "clepy-0.3.20"; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/c/clepy/${name}.tar.gz"; + sha256 = "16vibfxms5z4ld8gbkra6dkhqm2cc3jnn0fwp7mw70nlwxnmm51c"; + }; + + buildInputs = [ mock nose decorator ]; + + meta = { + homepage = http://code.google.com/p/clepy/; + description = "Utilities created by the Cleveland Python users group"; + }; + }; + + clientform = buildPythonPackage (rec { name = "clientform-0.2.10"; @@ -1685,6 +1708,23 @@ pythonPackages = python.modules // rec { }; }); + http_signature = buildPythonPackage (rec { + name = "http_signature-0.1.4"; + + src = fetchurl { + url = "http://pypi.python.org/packages/source/h/http_signature/${name}.tar.gz"; + md5 = "015061846254bd5d8c5dbc2913985153"; + }; + + propagatedBuildInputs = [pycrypto]; + + meta = { + homepage = https://github.com/atl/py-http-signature; + description = ""; + license = stdenv.lib.licenses.mit; + }; + }); + httplib2 = buildPythonPackage rec { name = "httplib2-0.8"; @@ -2753,11 +2793,11 @@ pythonPackages = python.modules // rec { prettytable = buildPythonPackage rec { - name = "prettytable-0.5"; + name = "prettytable-0.7.1"; src = fetchurl { - url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.gz"; - md5 = "13a6930d775395f393afd86948afa4fa"; + url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; + sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851"; }; meta = { @@ -3867,6 +3907,23 @@ pythonPackages = python.modules // rec { }; }); + smartdc = buildPythonPackage rec { + name = "smartdc-0.1.12"; + + src = fetchurl { + url = https://pypi.python.org/packages/source/s/smartdc/smartdc-0.1.12.tar.gz; + md5 = "b960f61facafc879142b699050f6d8b4"; + }; + + propagatedBuildInputs = [ requests http_signature ]; + + meta = { + description = "Joyent SmartDataCenter CloudAPI connector using http-signature authentication via Requests"; + homepage = https://github.com/atl/py-smartdc; + license = pkgs.lib.licenses.mit; + }; + }; + sphinx = buildPythonPackage (rec { name = "Sphinx-1.1.3"; diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index bbc610d7c0c..8ec797de672 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -1,609 +1,606 @@ /* Essential Haskell packages that must build. */ -with (import ./release-lib.nix); +{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } }: -let +let supportedSystems = [ "x86_64-linux" ]; in - linux = ["x86_64-linux"]; +with import ./release-lib.nix { inherit supportedSystems; }; -in +mapTestOn { + gitAndTools.gitAnnex = supportedSystems; -mapTestOn (rec { - - gitAndTools.gitAnnex = linux; - - jhc = linux; + jhc = supportedSystems; haskellPackages_ghc742 = { - abstractPar = linux; - ACVector = linux; - aeson = linux; - AgdaExecutable = linux; - alex = linux; - alexMeta = linux; - alternativeIo = linux; - ansiTerminal = linux; - ansiWlPprint = linux; - asn1Data = linux; - AspectAG = linux; - async = linux; - attempt = linux; - attoparsecEnumerator = linux; - attoparsec = linux; - authenticate = linux; - base64Bytestring = linux; - baseUnicodeSymbols = linux; - benchpress = linux; - bimap = linux; - binaryShared = linux; - bitmap = linux; - bktrees = linux; - blazeBuilderEnumerator = linux; - blazeBuilder = linux; - blazeHtml = linux; - blazeTextual = linux; - bloomfilter = linux; - bmp = linux; - BNFC = linux; - BNFCMeta = linux; - Boolean = linux; - bytestringMmap = linux; - bytestringNums = linux; - bytestringTrie = linux; - cabal2Ghci = linux; - cabal2nix = linux; - cabalDev = linux; - cabalGhci = linux; - cabalInstall = linux; - cairo = linux; - caseInsensitive = linux; - cautiousFile = linux; - cereal = linux; - certificate = linux; - cgi = linux; - Chart = linux; - citeprocHs = linux; - clientsession = linux; - cmdargs = linux; - cmdlib = linux; - colorizeHaskell = linux; - colour = linux; - comonadsFd = linux; - conduit = linux; - ConfigFile = linux; - continuedFractions = linux; - converge = linux; - convertible = linux; - cookie = linux; - cpphs = linux; - cprngAes = linux; - criterion = linux; - cryptoApi = linux; - cryptocipher = linux; - cryptohash = linux; - Crypto = linux; - cssText = linux; - csv = linux; - darcs = linux; - dataAccessor = linux; - dataAccessorTemplate = linux; - dataDefault = linux; - dataenc = linux; - dataReify = linux; - datetime = linux; - DAV = linux; - dbus = linux; - derive = linux; - diagrams = linux; - Diff = linux; - digestiveFunctorsHeist = linux; - digestiveFunctorsSnap = linux; - digest = linux; - dimensional = linux; - dimensionalTf = linux; - directoryTree = linux; - distributedProcess = linux; - dlist = linux; - dns = linux; - doctest = linux; - dotgen = linux; - doubleConversion = linux; - Ebnf2ps = linux; - editDistance = linux; - editline = linux; - emailValidate = linux; - entropy = linux; - enumerator = linux; - epic = linux; - erf = linux; - failure = linux; - fclabels = linux; - feed = linux; - fgl = linux; - fileEmbed = linux; - filestore = linux; - fingertree = linux; - flexibleDefaults = linux; - funcmp = linux; - gamma = linux; - gdiff = linux; - ghcEvents = linux; - ghc = linux; - ghcMtl = linux; - ghcPaths = linux; - ghcSybUtils = linux; - githubBackup = linux; - github = linux; - gitit = linux; - glade = linux; - glib = linux; - Glob = linux; - gloss = linux; - GLUT = linux; - gnutls = linux; - graphviz = linux; - gtk = linux; - gtksourceview2 = linux; - hackageDb = linux; - haddock = linux; - hakyll = linux; - hamlet = linux; - happstackHamlet = linux; - happstackServer = linux; - happstackUtil = linux; - happy = linux; - hashable = linux; - hashedStorage = linux; - haskeline = linux; - haskellLexer = linux; - haskellPlatform = linux; - haskellSrcExts = linux; - haskellSrc = linux; - haskellSrcMeta = linux; - HaXml = linux; - haxr = linux; - HDBC = linux; - HDBCPostgresql = linux; - HDBCSqlite3 = linux; - HFuse = linux; - highlightingKate = linux; - hinotify = linux; - hint = linux; - Hipmunk = linux; - hledgerInterest = linux; - hledgerLib = linux; - hledger = linux; - hledgerWeb = linux; - hlint = linux; - HList = linux; - hmatrix = linux; - hoogle = linux; - hopenssl = linux; - hostname = linux; - hp2anyCore = linux; - hp2anyGraph = linux; - hS3 = linux; - hscolour = linux; - hsdns = linux; - hsemail = linux; - hslogger = linux; - hsloggerTemplate = linux; - hspec = linux; - hspread = linux; - HsSyck = linux; - HStringTemplate = linux; - hsyslog = linux; - html = linux; - httpConduit = linux; - httpDate = linux; - httpdShed = linux; - HTTP = linux; - httpTypes = linux; - HUnit = linux; - hxt = linux; - IfElse = linux; - irc = linux; - iteratee = linux; - jailbreakCabal = linux; - json = linux; - jsonTypes = linux; - lambdabot = linux; - languageCQuote = linux; - languageJavascript = linux; - largeword = linux; - lens = linux; - libxmlSax = linux; - liftedBase = linux; - ListLike = linux; - logfloat = linux; - ltk = linux; - mainlandPretty = linux; - maude = linux; - MaybeT = linux; - MemoTrie = linux; - mersenneRandomPure64 = linux; - mimeMail = linux; - MissingH = linux; - mmap = linux; - MonadCatchIOMtl = linux; - MonadCatchIOTransformers = linux; - monadControl = linux; - monadLoops = linux; - monadPar = linux; - monadPeel = linux; - MonadPrompt = linux; - MonadRandom = linux; - mpppc = linux; - mtl = linux; - mtlparse = linux; - multiplate = linux; - multirec = linux; - multiset = linux; - murmurHash = linux; - mwcRandom = linux; - nat = linux; - nats = linux; - naturals = linux; - networkInfo = linux; - network = linux; - networkMulticast = linux; - networkProtocolXmpp = linux; - nonNegative = linux; - numericPrelude = linux; - numtype = linux; - numtypeTf = linux; - ObjectName = linux; - OneTuple = linux; - OpenAL = linux; - OpenGL = linux; - packunused = linux; - pandoc = linux; - pandocTypes = linux; - pango = linux; - parallel = linux; - parseargs = linux; - parsec3 = linux; - parsec = linux; - parsimony = linux; - pathPieces = linux; - pathtype = linux; - pcreLight = linux; - permutation = linux; - persistent = linux; - persistentPostgresql = linux; - persistentSqlite = linux; - persistentTemplate = linux; - polyparse = linux; - ppm = linux; - prettyShow = linux; - primitive = linux; - PSQueue = linux; - pureMD5 = linux; - pwstoreFast = linux; - QuickCheck2 = linux; - QuickCheck = linux; - randomFu = linux; - random = linux; - randomShuffle = linux; - randomSource = linux; - RangedSets = linux; - ranges = linux; - readline = linux; - recaptcha = linux; - regexBase = linux; - regexCompat = linux; - regexPCRE = linux; - regexPosix = linux; - regexpr = linux; - regexTDFA = linux; - regular = linux; - RSA = linux; - rvar = linux; - safe = linux; - SafeSemaphore = linux; - SDLImage = linux; - SDL = linux; - SDLMixer = linux; - SDLTtf = linux; - semigroups = linux; - sendfile = linux; - shake = linux; - SHA = linux; - Shellac = linux; - shelly = linux; - simpleSendfile = linux; - smallcheck = linux; - SMTPClient = linux; - snapCore = linux; - snap = linux; - snapLoaderStatic = linux; - snapServer = linux; - split = linux; - splot = linux; - srcloc = linux; - stateref = linux; - StateVar = linux; - statistics = linux; - stbImage = linux; - stm = linux; - storableComplex = linux; - storableRecord = linux; - streamproc = linux; - strictConcurrency = linux; - strict = linux; - strptime = linux; - svgcairo = linux; - syb = linux; - sybWithClassInstancesText = linux; - sybWithClass = linux; - tabular = linux; - tagged = linux; - tagsoup = linux; - tar = linux; - Tensor = linux; - terminfo = linux; - testFramework = linux; - testpack = linux; - texmath = linux; - text = linux; - thLift = linux; - timeplot = linux; - tlsExtra = linux; - tls = linux; - transformersBase = linux; - transformersCompat = linux; - transformers = linux; - tuple = linux; - typeLlevelNaturalNumber = linux; - uniplate = linux; - uniqueid = linux; - unixCompat = linux; - unorderedContainers = linux; - url = linux; - utf8Light = linux; - utf8String = linux; - utilityHt = linux; - uuagc = linux; - uuid = linux; - uulib = linux; - vacuumCairo = linux; - vacuum = linux; - vcsRevision = linux; - Vec = linux; - vectorAlgorithms = linux; - vector = linux; - vectorSpace = linux; - vty = linux; - waiAppStatic = linux; - waiExtra = linux; - wai = linux; - waiLogger = linux; - warp = linux; - wlPprintExtras = linux; - wlPprint = linux; - wlPprintTerminfo = linux; - wxcore = linux; - wxdirect = linux; - wx = linux; - X11 = linux; - xhtml = linux; - xmlConduit = linux; - xmlHamlet = linux; - xml = linux; - xmlTypes = linux; - xmobar = linux; - xmonadContrib = linux; - xmonadExtras = linux; - xmonad = linux; - xssSanitize = linux; - yesodAuth = linux; - yesodCore = linux; - yesodDefault = linux; - yesodForm = linux; - yesodJson = linux; - yesod = linux; - yesodPersistent = linux; - yesodStatic = linux; - zeromq3Haskell = linux; - zeromqHaskell = linux; - zipArchive = linux; - zipper = linux; - zlibBindings = linux; - zlibEnum = linux; - zlib = linux; + abstractPar = supportedSystems; + ACVector = supportedSystems; + aeson = supportedSystems; + AgdaExecutable = supportedSystems; + alex = supportedSystems; + alexMeta = supportedSystems; + alternativeIo = supportedSystems; + ansiTerminal = supportedSystems; + ansiWlPprint = supportedSystems; + asn1Data = supportedSystems; + AspectAG = supportedSystems; + async = supportedSystems; + attempt = supportedSystems; + attoparsecEnumerator = supportedSystems; + attoparsec = supportedSystems; + authenticate = supportedSystems; + base64Bytestring = supportedSystems; + baseUnicodeSymbols = supportedSystems; + benchpress = supportedSystems; + bimap = supportedSystems; + binaryShared = supportedSystems; + bitmap = supportedSystems; + bktrees = supportedSystems; + blazeBuilderEnumerator = supportedSystems; + blazeBuilder = supportedSystems; + blazeHtml = supportedSystems; + blazeTextual = supportedSystems; + bloomfilter = supportedSystems; + bmp = supportedSystems; + BNFC = supportedSystems; + BNFCMeta = supportedSystems; + Boolean = supportedSystems; + bytestringMmap = supportedSystems; + bytestringNums = supportedSystems; + bytestringTrie = supportedSystems; + cabal2Ghci = supportedSystems; + cabal2nix = supportedSystems; + cabalDev = supportedSystems; + cabalGhci = supportedSystems; + cabalInstall = supportedSystems; + cairo = supportedSystems; + caseInsensitive = supportedSystems; + cautiousFile = supportedSystems; + cereal = supportedSystems; + certificate = supportedSystems; + cgi = supportedSystems; + Chart = supportedSystems; + citeprocHs = supportedSystems; + clientsession = supportedSystems; + cmdargs = supportedSystems; + cmdlib = supportedSystems; + colorizeHaskell = supportedSystems; + colour = supportedSystems; + comonadsFd = supportedSystems; + conduit = supportedSystems; + ConfigFile = supportedSystems; + continuedFractions = supportedSystems; + converge = supportedSystems; + convertible = supportedSystems; + cookie = supportedSystems; + cpphs = supportedSystems; + cprngAes = supportedSystems; + criterion = supportedSystems; + cryptoApi = supportedSystems; + cryptocipher = supportedSystems; + cryptohash = supportedSystems; + Crypto = supportedSystems; + cssText = supportedSystems; + csv = supportedSystems; + darcs = supportedSystems; + dataAccessor = supportedSystems; + dataAccessorTemplate = supportedSystems; + dataDefault = supportedSystems; + dataenc = supportedSystems; + dataReify = supportedSystems; + datetime = supportedSystems; + DAV = supportedSystems; + dbus = supportedSystems; + derive = supportedSystems; + diagrams = supportedSystems; + Diff = supportedSystems; + digestiveFunctorsHeist = supportedSystems; + digestiveFunctorsSnap = supportedSystems; + digest = supportedSystems; + dimensional = supportedSystems; + dimensionalTf = supportedSystems; + directoryTree = supportedSystems; + distributedProcess = supportedSystems; + dlist = supportedSystems; + dns = supportedSystems; + doctest = supportedSystems; + dotgen = supportedSystems; + doubleConversion = supportedSystems; + Ebnf2ps = supportedSystems; + editDistance = supportedSystems; + editline = supportedSystems; + emailValidate = supportedSystems; + entropy = supportedSystems; + enumerator = supportedSystems; + epic = supportedSystems; + erf = supportedSystems; + failure = supportedSystems; + fclabels = supportedSystems; + feed = supportedSystems; + fgl = supportedSystems; + fileEmbed = supportedSystems; + filestore = supportedSystems; + fingertree = supportedSystems; + flexibleDefaults = supportedSystems; + funcmp = supportedSystems; + gamma = supportedSystems; + gdiff = supportedSystems; + ghcEvents = supportedSystems; + ghc = supportedSystems; + ghcMtl = supportedSystems; + ghcPaths = supportedSystems; + ghcSybUtils = supportedSystems; + githubBackup = supportedSystems; + github = supportedSystems; + gitit = supportedSystems; + glade = supportedSystems; + glib = supportedSystems; + Glob = supportedSystems; + gloss = supportedSystems; + GLUT = supportedSystems; + gnutls = supportedSystems; + graphviz = supportedSystems; + gtk = supportedSystems; + gtksourceview2 = supportedSystems; + hackageDb = supportedSystems; + haddock = supportedSystems; + hakyll = supportedSystems; + hamlet = supportedSystems; + happstackHamlet = supportedSystems; + happstackServer = supportedSystems; + happstackUtil = supportedSystems; + happy = supportedSystems; + hashable = supportedSystems; + hashedStorage = supportedSystems; + haskeline = supportedSystems; + haskellLexer = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrcExts = supportedSystems; + haskellSrc = supportedSystems; + haskellSrcMeta = supportedSystems; + HaXml = supportedSystems; + haxr = supportedSystems; + HDBC = supportedSystems; + HDBCPostgresql = supportedSystems; + HDBCSqlite3 = supportedSystems; + HFuse = supportedSystems; + highlightingKate = supportedSystems; + hinotify = supportedSystems; + hint = supportedSystems; + Hipmunk = supportedSystems; + hledgerInterest = supportedSystems; + hledgerLib = supportedSystems; + hledger = supportedSystems; + hledgerWeb = supportedSystems; + hlint = supportedSystems; + HList = supportedSystems; + hmatrix = supportedSystems; + hoogle = supportedSystems; + hopenssl = supportedSystems; + hostname = supportedSystems; + hp2anyCore = supportedSystems; + hp2anyGraph = supportedSystems; + hS3 = supportedSystems; + hscolour = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hslogger = supportedSystems; + hsloggerTemplate = supportedSystems; + hspec = supportedSystems; + hspread = supportedSystems; + HsSyck = supportedSystems; + HStringTemplate = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + httpConduit = supportedSystems; + httpDate = supportedSystems; + httpdShed = supportedSystems; + HTTP = supportedSystems; + httpTypes = supportedSystems; + HUnit = supportedSystems; + hxt = supportedSystems; + IfElse = supportedSystems; + irc = supportedSystems; + iteratee = supportedSystems; + jailbreakCabal = supportedSystems; + json = supportedSystems; + jsonTypes = supportedSystems; + lambdabot = supportedSystems; + languageCQuote = supportedSystems; + languageJavascript = supportedSystems; + largeword = supportedSystems; + lens = supportedSystems; + libxmlSax = supportedSystems; + liftedBase = supportedSystems; + ListLike = supportedSystems; + logfloat = supportedSystems; + ltk = supportedSystems; + mainlandPretty = supportedSystems; + maude = supportedSystems; + MaybeT = supportedSystems; + MemoTrie = supportedSystems; + mersenneRandomPure64 = supportedSystems; + mimeMail = supportedSystems; + MissingH = supportedSystems; + mmap = supportedSystems; + MonadCatchIOMtl = supportedSystems; + MonadCatchIOTransformers = supportedSystems; + monadControl = supportedSystems; + monadLoops = supportedSystems; + monadPar = supportedSystems; + monadPeel = supportedSystems; + MonadPrompt = supportedSystems; + MonadRandom = supportedSystems; + mpppc = supportedSystems; + mtl = supportedSystems; + mtlparse = supportedSystems; + multiplate = supportedSystems; + multirec = supportedSystems; + multiset = supportedSystems; + murmurHash = supportedSystems; + mwcRandom = supportedSystems; + nat = supportedSystems; + nats = supportedSystems; + naturals = supportedSystems; + networkInfo = supportedSystems; + network = supportedSystems; + networkMulticast = supportedSystems; + networkProtocolXmpp = supportedSystems; + nonNegative = supportedSystems; + numericPrelude = supportedSystems; + numtype = supportedSystems; + numtypeTf = supportedSystems; + ObjectName = supportedSystems; + OneTuple = supportedSystems; + OpenAL = supportedSystems; + OpenGL = supportedSystems; + packunused = supportedSystems; + pandoc = supportedSystems; + pandocTypes = supportedSystems; + pango = supportedSystems; + parallel = supportedSystems; + parseargs = supportedSystems; + parsec3 = supportedSystems; + parsec = supportedSystems; + parsimony = supportedSystems; + pathPieces = supportedSystems; + pathtype = supportedSystems; + pcreLight = supportedSystems; + permutation = supportedSystems; + persistent = supportedSystems; + persistentPostgresql = supportedSystems; + persistentSqlite = supportedSystems; + persistentTemplate = supportedSystems; + polyparse = supportedSystems; + ppm = supportedSystems; + prettyShow = supportedSystems; + primitive = supportedSystems; + PSQueue = supportedSystems; + pureMD5 = supportedSystems; + pwstoreFast = supportedSystems; + QuickCheck2 = supportedSystems; + QuickCheck = supportedSystems; + randomFu = supportedSystems; + random = supportedSystems; + randomShuffle = supportedSystems; + randomSource = supportedSystems; + RangedSets = supportedSystems; + ranges = supportedSystems; + readline = supportedSystems; + recaptcha = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPCRE = supportedSystems; + regexPosix = supportedSystems; + regexpr = supportedSystems; + regexTDFA = supportedSystems; + regular = supportedSystems; + RSA = supportedSystems; + rvar = supportedSystems; + safe = supportedSystems; + SafeSemaphore = supportedSystems; + SDLImage = supportedSystems; + SDL = supportedSystems; + SDLMixer = supportedSystems; + SDLTtf = supportedSystems; + semigroups = supportedSystems; + sendfile = supportedSystems; + shake = supportedSystems; + SHA = supportedSystems; + Shellac = supportedSystems; + shelly = supportedSystems; + simpleSendfile = supportedSystems; + smallcheck = supportedSystems; + SMTPClient = supportedSystems; + snapCore = supportedSystems; + snap = supportedSystems; + snapLoaderStatic = supportedSystems; + snapServer = supportedSystems; + split = supportedSystems; + splot = supportedSystems; + srcloc = supportedSystems; + stateref = supportedSystems; + StateVar = supportedSystems; + statistics = supportedSystems; + stbImage = supportedSystems; + stm = supportedSystems; + storableComplex = supportedSystems; + storableRecord = supportedSystems; + streamproc = supportedSystems; + strictConcurrency = supportedSystems; + strict = supportedSystems; + strptime = supportedSystems; + svgcairo = supportedSystems; + syb = supportedSystems; + sybWithClassInstancesText = supportedSystems; + sybWithClass = supportedSystems; + tabular = supportedSystems; + tagged = supportedSystems; + tagsoup = supportedSystems; + tar = supportedSystems; + Tensor = supportedSystems; + terminfo = supportedSystems; + testFramework = supportedSystems; + testpack = supportedSystems; + texmath = supportedSystems; + text = supportedSystems; + thLift = supportedSystems; + timeplot = supportedSystems; + tlsExtra = supportedSystems; + tls = supportedSystems; + transformersBase = supportedSystems; + transformersCompat = supportedSystems; + transformers = supportedSystems; + tuple = supportedSystems; + typeLlevelNaturalNumber = supportedSystems; + uniplate = supportedSystems; + uniqueid = supportedSystems; + unixCompat = supportedSystems; + unorderedContainers = supportedSystems; + url = supportedSystems; + utf8Light = supportedSystems; + utf8String = supportedSystems; + utilityHt = supportedSystems; + uuagc = supportedSystems; + uuid = supportedSystems; + uulib = supportedSystems; + vacuumCairo = supportedSystems; + vacuum = supportedSystems; + vcsRevision = supportedSystems; + Vec = supportedSystems; + vectorAlgorithms = supportedSystems; + vector = supportedSystems; + vectorSpace = supportedSystems; + vty = supportedSystems; + waiAppStatic = supportedSystems; + waiExtra = supportedSystems; + wai = supportedSystems; + waiLogger = supportedSystems; + warp = supportedSystems; + wlPprintExtras = supportedSystems; + wlPprint = supportedSystems; + wlPprintTerminfo = supportedSystems; + wxcore = supportedSystems; + wxdirect = supportedSystems; + wx = supportedSystems; + X11 = supportedSystems; + xhtml = supportedSystems; + xmlConduit = supportedSystems; + xmlHamlet = supportedSystems; + xml = supportedSystems; + xmlTypes = supportedSystems; + xmobar = supportedSystems; + xmonadContrib = supportedSystems; + xmonadExtras = supportedSystems; + xmonad = supportedSystems; + xssSanitize = supportedSystems; + yesodAuth = supportedSystems; + yesodCore = supportedSystems; + yesodDefault = supportedSystems; + yesodForm = supportedSystems; + yesodJson = supportedSystems; + yesod = supportedSystems; + yesodPersistent = supportedSystems; + yesodStatic = supportedSystems; + zeromq3Haskell = supportedSystems; + zeromqHaskell = supportedSystems; + zipArchive = supportedSystems; + zipper = supportedSystems; + zlibBindings = supportedSystems; + zlibEnum = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc762 = { - alex = linux; - async = linux; - BNFC = linux; - cabal2nix = linux; - cabalDev = linux; - cabalGhci = linux; - cabalInstall = linux; - cgi = linux; - cmdlib = linux; - criterion = linux; - dimensional = linux; - dimensionalTf = linux; - doctest = linux; - fgl = linux; - funcmp = linux; - ghcMod = linux; - GLUT = linux; - graphviz = linux; - hackageDb = linux; - haddock = linux; - happy = linux; - haskellSrc = linux; - hledgerInterest = linux; - hledgerLib = linux; - hledger = linux; - hlint = linux; - HList = linux; - hoogle = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hspec = linux; - HStringTemplate = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; - jailbreakCabal = linux; - monadPar = linux; - mtl = linux; - network = linux; - OpenGL = linux; - pandoc = linux; - parallel = linux; - parsec = linux; - permutation = linux; - primitive = linux; - QuickCheck = linux; - random = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - smallcheck = linux; - split = linux; - stm = linux; - streamproc = linux; - syb = linux; - tar = linux; - testFrameworkHunit = linux; - testFramework = linux; - text = linux; - transformers = linux; - uulib = linux; - vector = linux; - wlPprint = linux; - xhtml = linux; - xmobar = linux; - xmonadContrib = linux; - xmonadExtras = linux; - xmonad = linux; - zlib = linux; + alex = supportedSystems; + async = supportedSystems; + BNFC = supportedSystems; + cabal2nix = supportedSystems; + cabalDev = supportedSystems; + cabalGhci = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + cmdlib = supportedSystems; + criterion = supportedSystems; + dimensional = supportedSystems; + dimensionalTf = supportedSystems; + doctest = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + ghcMod = supportedSystems; + GLUT = supportedSystems; + graphviz = supportedSystems; + hackageDb = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellSrc = supportedSystems; + hledgerInterest = supportedSystems; + hledgerLib = supportedSystems; + hledger = supportedSystems; + hlint = supportedSystems; + HList = supportedSystems; + hoogle = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hspec = supportedSystems; + HStringTemplate = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; + jailbreakCabal = supportedSystems; + monadPar = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + pandoc = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + permutation = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + random = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + smallcheck = supportedSystems; + split = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + syb = supportedSystems; + tar = supportedSystems; + testFrameworkHunit = supportedSystems; + testFramework = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + uulib = supportedSystems; + vector = supportedSystems; + wlPprint = supportedSystems; + xhtml = supportedSystems; + xmobar = supportedSystems; + xmonadContrib = supportedSystems; + xmonadExtras = supportedSystems; + xmonad = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc704 = { - alex = linux; - cabal2nix = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabal2nix = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - syb = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + syb = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc6123 = { - alex = linux; - cabal2nix = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsemail = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabal2nix = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsemail = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; haskellPackages_ghc6104 = { - alex = linux; - cabalInstall = linux; - cgi = linux; - fgl = linux; - funcmp = linux; - GLUT = linux; - haddock = linux; - happy = linux; - haskellPlatform = linux; - haskellSrc = linux; - hopenssl = linux; - hsdns = linux; - hsyslog = linux; - html = linux; - HTTP = linux; - HUnit = linux; + alex = supportedSystems; + cabalInstall = supportedSystems; + cgi = supportedSystems; + fgl = supportedSystems; + funcmp = supportedSystems; + GLUT = supportedSystems; + haddock = supportedSystems; + happy = supportedSystems; + haskellPlatform = supportedSystems; + haskellSrc = supportedSystems; + hopenssl = supportedSystems; + hsdns = supportedSystems; + hsyslog = supportedSystems; + html = supportedSystems; + HTTP = supportedSystems; + HUnit = supportedSystems; # This attribute causes an infinite recursion in Hydra! - # jailbreakCabal = linux; - mtl = linux; - network = linux; - OpenGL = linux; - parallel = linux; - parsec = linux; - primitive = linux; - QuickCheck = linux; - regexBase = linux; - regexCompat = linux; - regexPosix = linux; - stm = linux; - streamproc = linux; - text = linux; - transformers = linux; - vector = linux; - xhtml = linux; - zlib = linux; + # jailbreakCabal = supportedSystems; + mtl = supportedSystems; + network = supportedSystems; + OpenGL = supportedSystems; + parallel = supportedSystems; + parsec = supportedSystems; + primitive = supportedSystems; + QuickCheck = supportedSystems; + regexBase = supportedSystems; + regexCompat = supportedSystems; + regexPosix = supportedSystems; + stm = supportedSystems; + streamproc = supportedSystems; + text = supportedSystems; + transformers = supportedSystems; + vector = supportedSystems; + xhtml = supportedSystems; + zlib = supportedSystems; }; -}) +}