From dbee2b8ee9e51868d4fb09d6d685a41959630f4f Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 17 Mar 2013 16:18:36 -0700 Subject: [PATCH 01/98] cuetools-1.3.1 --- pkgs/tools/cd-dvd/cuetools/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/tools/cd-dvd/cuetools/default.nix diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix new file mode 100644 index 00000000000..fd58e3ea6e2 --- /dev/null +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -0,0 +1,19 @@ +{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 = "cue and toc file parsers and utilities"; + homepage = https://github.com/svend/cuetools; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ba6f934f01e..9af85e06f3f 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 { }; From 94a3a5e00a6986d2520dee972c3235fc0d51f028 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 24 Mar 2013 22:08:09 -0700 Subject: [PATCH 02/98] shntool-3.0.10 --- pkgs/applications/audio/shntool/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/applications/audio/shntool/default.nix diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix new file mode 100644 index 00000000000..68fb8bfb142 --- /dev/null +++ b/pkgs/applications/audio/shntool/default.nix @@ -0,0 +1,20 @@ +{ 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 = "GPLv2+"; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1e269b6f97d..bb35ee95dd6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7762,6 +7762,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; From 1c4e7e78ced8e4504ec29ab72449bf35d2a9a37f Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Tue, 26 Mar 2013 22:52:54 +0800 Subject: [PATCH 03/98] Add chicken-4.8.1 --- pkgs/development/compilers/chicken/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/development/compilers/chicken/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7f9aa08b8c..78bc9fe474d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1940,6 +1940,8 @@ let bigloo = callPackage ../development/compilers/bigloo { }; + chicken = callPackage ../development/compilers/chicken { }; + ccl = builderDefsPackage ../development/compilers/ccl {}; clangUnwrapped = callPackage ../development/compilers/llvm/clang.nix { From 6cd1dc255ee33df8961a2c55c16844e6562362c6 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:42:15 -0400 Subject: [PATCH 04/98] Update rubygems Signed-off-by: Shea Levy --- .../interpreters/ruby/generated.nix | 231 ++++++++++-------- 1 file changed, 127 insertions(+), 104 deletions(-) diff --git a/pkgs/development/interpreters/ruby/generated.nix b/pkgs/development/interpreters/ruby/generated.nix index 2f276fc163a..13ee31bf44f 100644 --- a/pkgs/development/interpreters/ruby/generated.nix +++ b/pkgs/development/interpreters/ruby/generated.nix @@ -4,12 +4,12 @@ g: # Get dependencies from patched gems { aliases = { ZenTest = g.ZenTest_4_9_0; - actionmailer = g.actionmailer_3_2_12; - actionpack = g.actionpack_3_2_12; - activemodel = g.activemodel_3_2_12; - activerecord = g.activerecord_3_2_12; - activeresource = g.activeresource_3_2_12; - activesupport = g.activesupport_3_2_12; + actionmailer = g.actionmailer_3_2_13; + actionpack = g.actionpack_3_2_13; + activemodel = g.activemodel_3_2_13; + activerecord = g.activerecord_3_2_13; + activeresource = g.activeresource_3_2_13; + activesupport = g.activesupport_3_2_13; addressable = g.addressable_2_3_3; arel = g.arel_3_0_2; atoulme_Antwrap = g.atoulme_Antwrap_0_7_4; @@ -17,7 +17,7 @@ g: # Get dependencies from patched gems aws_sdk = g.aws_sdk_1_8_5; bitbucket_backup = g.bitbucket_backup_0_2_2; builder = g.builder_3_2_0; - buildr = g.buildr_1_4_10; + buildr = g.buildr_1_4_11; bundler = g.bundler_1_3_4; childprocess = g.childprocess_0_3_9; chronic = g.chronic_0_9_1; @@ -28,44 +28,45 @@ g: # Get dependencies from patched gems erubis = g.erubis_2_7_0; eventmachine = g.eventmachine_1_0_3; eventmachine_tail = g.eventmachine_tail_0_6_4; + execjs = g.execjs_1_4_0; fakes3 = g.fakes3_0_1_5; - faraday = g.faraday_0_8_6; + faraday = g.faraday_0_8_7; faraday_middleware = g.faraday_middleware_0_8_8; - ffi = g.ffi_1_4_0; + ffi = g.ffi_1_6_0; file_tail = g.file_tail_1_0_12; foreman = g.foreman_0_62_0; - highline = g.highline_1_6_15; + highline = g.highline_1_6_16; hike = g.hike_1_2_1; hoe = g.hoe_3_1_0; i18n = g.i18n_0_6_4; journey = g.journey_1_0_4; jruby_pageant = g.jruby_pageant_1_1_1; - jsduck = g.jsduck_4_6_2; + jsduck = g.jsduck_4_7_1; json = g.json_1_7_7; json_pure = g.json_pure_1_7_7; libv8 = g.libv8_3_3_10_4; macaddr = g.macaddr_1_6_1; - mail = g.mail_2_4_4; + mail = g.mail_2_5_3; mime_types = g.mime_types_1_21; minitar = g.minitar_0_5_3; - multi_json = g.multi_json_1_6_1; + multi_json = g.multi_json_1_7_2; multipart_post = g.multipart_post_1_2_0; net_sftp = g.net_sftp_2_0_5; net_ssh = g.net_ssh_2_6_6; nix = g.nix_0_1_1; - nokogiri = g.nokogiri_1_5_6; + nokogiri = g.nokogiri_1_5_9; papertrail = g.papertrail_0_9_7; papertrail_cli = g.papertrail_cli_0_9_3; - parallel = g.parallel_0_6_2; + parallel = g.parallel_0_6_3; polyglot = g.polyglot_0_3_3; rack = g.rack_1_5_2; rack_cache = g.rack_cache_1_2; rack_protection = g.rack_protection_1_5_0; rack_ssl = g.rack_ssl_1_3_3; rack_test = g.rack_test_0_6_2; - rails = g.rails_3_2_12; - railties = g.railties_3_2_12; - rake = g.rake_10_0_3; + rails = g.rails_3_2_13; + railties = g.railties_3_2_13; + rake = g.rake_10_0_4; rb_fsevent = g.rb_fsevent_0_9_3; rdiscount = g.rdiscount_2_0_7_1; rdoc = g.rdoc_3_12_2; @@ -85,9 +86,9 @@ g: # Get dependencies from patched gems syslog_protocol = g.syslog_protocol_0_9_2; systemu = g.systemu_2_5_2; therubyracer = g.therubyracer_0_10_2; - thin = g.thin_1_5_0; - thor = g.thor_0_17_0; - tilt = g.tilt_1_3_5; + thin = g.thin_1_5_1; + thor = g.thor_0_18_0; + tilt = g.tilt_1_3_6; tins = g.tins_0_7_2; treetop = g.treetop_1_4_12; tzinfo = g.tzinfo_0_3_37; @@ -130,71 +131,71 @@ installed versions.''; requiredGems = [ ]; sha256 = ''16bp7rwl463m0d213rmwp4rjfwiw1bm529c518v91l18h7hcnb96''; }; - actionmailer_3_2_12 = { + actionmailer_3_2_13 = { basename = ''actionmailer''; meta = { description = ''Email composition, delivery, and receiving framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.''; }; - name = ''actionmailer-3.2.12''; - requiredGems = [ g.actionpack_3_2_12 g.mail_2_4_4 ]; - sha256 = ''0rjcyz5p139iv7r9gb9nw6c490mksf6n3rnfxsg6bdaxpabinlc7''; + name = ''actionmailer-3.2.13''; + requiredGems = [ g.actionpack_3_2_13 g.mail_2_5_3 ]; + sha256 = ''0ksw1b5rba8l6400qgc6zjdn14q68n6crjmm76ggg32r4wv3xn06''; }; - actionpack_3_2_12 = { + actionpack_3_2_13 = { basename = ''actionpack''; meta = { description = ''Web-flow and rendering framework putting the VC in MVC (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.''; }; - name = ''actionpack-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.rack_cache_1_2 g.builder_3_0_4 g.rack_1_4_5 g.rack_test_0_6_2 g.journey_1_0_4 g.sprockets_2_2_2 g.erubis_2_7_0 ]; - sha256 = ''19p8slf607ssvhd1xkqmk0ddhxqh99faqbgw9i0gyjh1hxyh4apk''; + name = ''actionpack-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 g.rack_cache_1_2 g.builder_3_0_4 g.rack_1_4_5 g.rack_test_0_6_2 g.journey_1_0_4 g.sprockets_2_2_2 g.erubis_2_7_0 ]; + sha256 = ''1m3kd3rwa4z0yik68xi0l9q71lyzq4gdciqaw5w2w9pal1cj8y5w''; }; - activemodel_3_2_12 = { + activemodel_3_2_13 = { basename = ''activemodel''; meta = { description = ''A toolkit for building modeling frameworks (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''A toolkit for building modeling frameworks like Active Record and Active Resource. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.''; }; - name = ''activemodel-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.builder_3_0_4 ]; - sha256 = ''1w43k2yhdybrrhph87zhb9shc1j8z1ryhpqy15y7cj9gc4a1bnqf''; + name = ''activemodel-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.builder_3_0_4 ]; + sha256 = ''0lpc9ylwm00g66hmgj06iq51m2l234ii7k6qsjiywf9x5fq6khn5''; }; - activerecord_3_2_12 = { + activerecord_3_2_13 = { basename = ''activerecord''; meta = { description = ''Object-relational mapper framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.''; }; - name = ''activerecord-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.arel_3_0_2 g.tzinfo_0_3_37 ]; - sha256 = ''0fl8iyv3gcy72y79iv4ccyck8ik02rrl3pdy7yxfhlnqgryp8syi''; + name = ''activerecord-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 g.arel_3_0_2 g.tzinfo_0_3_37 ]; + sha256 = ''1z5rrjy2v27xldr24sd4sxi6k6f5anyg20kwj3qyc0jjn8c0gv85''; }; - activeresource_3_2_12 = { + activeresource_3_2_13 = { basename = ''activeresource''; meta = { description = ''REST modeling framework (part of Rails).''; homepage = ''http://www.rubyonrails.org''; longDescription = ''REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.''; }; - name = ''activeresource-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 ]; - sha256 = ''0dmy7n93ndxfqkccs0mv82dzkr130414djg96qi8njyj07ad84fi''; + name = ''activeresource-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.activemodel_3_2_13 ]; + sha256 = ''1r4ph4cqd32d4lq9bfyv1dpfxc4qndcqhqx7h7xg4p0va7dz251l''; }; - activesupport_3_2_12 = { + activesupport_3_2_13 = { basename = ''activesupport''; meta = { description = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.''; }; - name = ''activesupport-3.2.12''; - requiredGems = [ g.i18n_0_6_4 g.multi_json_1_6_1 ]; - sha256 = ''1giqkprxjf5gyfyhn5nz9q8a5gi3v8irxhkpqr00zc5fw1azllsg''; + name = ''activesupport-3.2.13''; + requiredGems = [ g.i18n_0_6_1 g.multi_json_1_7_2 ]; + sha256 = ''1vailj8ja9g3s029p5qbvqdpxcis5gcpkl2d6j7a6d36hxlwlf8y''; }; addressable_2_3_3 = { basename = ''addressable''; @@ -270,7 +271,7 @@ rails support and extra plugins for migrations and fixtures.''; longDescription = ''AWS SDK for Ruby''; }; name = ''aws-sdk-1.8.5''; - requiredGems = [ g.uuidtools_2_1_3 g.nokogiri_1_5_6 g.json_1_7_7 ]; + requiredGems = [ g.uuidtools_2_1_3 g.nokogiri_1_5_9 g.json_1_7_7 ]; sha256 = ''0rhkkkfsw0qzckn99mnvpbnl7b1kysma3x8bbqwah2x438kwygpb''; }; bitbucket_backup_0_2_2 = { @@ -281,7 +282,7 @@ rails support and extra plugins for migrations and fixtures.''; longDescription = ''A tool to backup Bitbucket repos.''; }; name = ''bitbucket-backup-0.2.2''; - requiredGems = [ g.highline_1_6_15 g.json_1_7_7 ]; + requiredGems = [ g.highline_1_6_16 g.json_1_7_7 ]; sha256 = ''1kzg6pkzw04n96i6mhb74gpg4c899wly5fc2m1y6m2xvn71qksys''; }; builder_3_0_4 = { @@ -332,7 +333,7 @@ simple to do. Currently the following builder objects are supported: requiredGems = [ ]; sha256 = ''0f2cpfx6lpazb1wrz3lf06qp6f0qf0gdq5z8xnhkplc3fz3kslb0''; }; - buildr_1_4_10 = { + buildr_1_4_11 = { basename = ''buildr''; meta = { description = ''Build like you code''; @@ -344,9 +345,9 @@ to do, and it takes care of the rest. But also something we can easily extend for those one-off tasks, with a language that's a joy to use. ''; }; - name = ''buildr-1.4.10''; + name = ''buildr-1.4.11''; requiredGems = [ g.rake_0_9_2_2 g.builder_3_1_3 g.net_ssh_2_6_0 g.net_sftp_2_0_5 g.rubyzip_0_9_9 g.highline_1_6_2 g.json_pure_1_7_5 g.rubyforge_2_0_4 g.hoe_3_1_0 g.rjb_1_4_2 g.atoulme_Antwrap_0_7_4 g.diff_lcs_1_1_3 g.rspec_expectations_2_11_3 g.rspec_mocks_2_11_3 g.rspec_core_2_11_1 g.rspec_2_11_0 g.xml_simple_1_1_1 g.minitar_0_5_3 g.bundler_1_3_4 ]; - sha256 = ''1x192r8ab5zr9rlp1i9b3pi3y74f9pj2w491wkgshgwj22akh6vn''; + sha256 = ''0bdrwl9jvxc5h2wqsyacr688hxvzcqan1bhqyryb5bg9a5gpscb4''; }; bundler_1_3_4 = { basename = ''bundler''; @@ -367,7 +368,7 @@ for those one-off tasks, with a language that's a joy to use. longDescription = ''This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.''; }; name = ''childprocess-0.3.9''; - requiredGems = [ g.ffi_1_4_0 ]; + requiredGems = [ g.ffi_1_6_0 ]; sha256 = ''0jbz2ix7ff9ry8717lhcq9w8j8yd45akw48giwgdqccay5mlph7d''; }; chronic_0_9_1 = { @@ -492,6 +493,17 @@ using TCP/IP, especially if custom protocols are required.''; requiredGems = [ g.eventmachine_1_0_3 ]; sha256 = ''1pvlb34vdzd81kf9f3xyibb4f55xjqm7lqqy28dgyci5cyv50y61''; }; + execjs_1_4_0 = { + basename = ''execjs''; + meta = { + description = ''Run JavaScript code from Ruby''; + homepage = ''https://github.com/sstephenson/execjs''; + longDescription = ''ExecJS lets you run JavaScript code from Ruby.''; + }; + name = ''execjs-1.4.0''; + requiredGems = [ g.multi_json_1_7_2 ]; + sha256 = ''0b69ci2afbcdqsri3i89a7s7j7palxsxdb65x6h2wx79kzlc5xcs''; + }; fakes3_0_1_5 = { basename = ''fakes3''; meta = { @@ -499,18 +511,18 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Use FakeS3 to test basic S3 functionality without actually connecting to S3''; }; name = ''fakes3-0.1.5''; - requiredGems = [ g.thor_0_17_0 g.builder_3_2_0 ]; + requiredGems = [ g.thor_0_18_0 g.builder_3_2_0 ]; sha256 = ''1na5wrbarla6s414svqmr5spbpv6vmcgpswal444x4clcpmadhib''; }; - faraday_0_8_6 = { + faraday_0_8_7 = { basename = ''faraday''; meta = { description = ''HTTP/REST API client library.''; homepage = ''https://github.com/lostisland/faraday''; }; - name = ''faraday-0.8.6''; + name = ''faraday-0.8.7''; requiredGems = [ g.multipart_post_1_2_0 ]; - sha256 = ''16jd0gnqfrh5v4v88nlasyjjm8cmf2w2p6gphxq64mvdxlcdy5jy''; + sha256 = ''186a9md3ixanl2crdlw37kspw5wiyw16z9mj3aw8rd1yd5q56ddi''; }; faraday_middleware_0_8_8 = { basename = ''faraday_middleware''; @@ -520,19 +532,19 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Various middleware for Faraday''; }; name = ''faraday_middleware-0.8.8''; - requiredGems = [ g.faraday_0_8_6 ]; + requiredGems = [ g.faraday_0_8_7 ]; sha256 = ''1n0g8pm7ynx6ffyqhscc1cqw97zhvd8isr31yfyj15335j1jsncz''; }; - ffi_1_4_0 = { + ffi_1_6_0 = { basename = ''ffi''; meta = { description = ''Ruby FFI''; homepage = ''http://wiki.github.com/ffi/ffi''; longDescription = ''Ruby FFI library''; }; - name = ''ffi-1.4.0''; + name = ''ffi-1.6.0''; requiredGems = [ ]; - sha256 = ''06a29qvg487yk9pyi7wzyj5700mf7s3mjdqc6dsrh0467mjj9768''; + sha256 = ''0jhjzj8gb6cakv32a6czgrx8krb0hx8mmkwh5yv2lhdcv3ak013v''; }; file_tail_1_0_12 = { basename = ''file_tail''; @@ -553,10 +565,10 @@ using TCP/IP, especially if custom protocols are required.''; longDescription = ''Process manager for applications with multiple components''; }; name = ''foreman-0.62.0''; - requiredGems = [ g.thor_0_17_0 ]; + requiredGems = [ g.thor_0_18_0 ]; sha256 = ''08i34rgs3bydk52zwpps4p0y2fvcnibp9lvfdhr75ppin7wv7lmr''; }; - highline_1_6_15 = { + highline_1_6_16 = { basename = ''highline''; meta = { description = ''HighLine is a high-level command-line IO library.''; @@ -567,9 +579,9 @@ crank out anything from simple list selection to complete shells with just minutes of work. ''; }; - name = ''highline-1.6.15''; + name = ''highline-1.6.16''; requiredGems = [ ]; - sha256 = ''1ilwlgylv92md9dnw6hqhrw8hiwk3f4k8qz6airqjp1rq9r594m1''; + sha256 = ''1v9dps96hryg7c8hqw41vbm1q02d7wpq7fj1c3bkzsd5518idgzi''; }; highline_1_6_2 = { basename = ''highline''; @@ -617,6 +629,17 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ g.rake_0_9_6 ]; sha256 = ''0i961x0hrd6fs1nsfham87dhn64gqpnai27l14jag7qbnp3a79yp''; }; + i18n_0_6_1 = { + basename = ''i18n''; + meta = { + description = ''New wave Internationalization support for Ruby''; + homepage = ''http://github.com/svenfuchs/i18n''; + longDescription = ''New wave Internationalization support for Ruby.''; + }; + name = ''i18n-0.6.1''; + requiredGems = [ ]; + sha256 = ''0x3lhp1vl1k4dfqx6k93hhxcpjkz57y8cf007ws7p845ywk6ibfl''; + }; i18n_0_6_4 = { basename = ''i18n''; meta = { @@ -650,16 +673,16 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ ]; sha256 = ''1kgqsn0bagr41gf5kbqaxbs38a7s5bm85m0pdx4qz7d70v9nc9cl''; }; - jsduck_4_6_2 = { + jsduck_4_7_1 = { basename = ''jsduck''; meta = { description = ''Simple JavaScript Duckumentation generator''; homepage = ''https://github.com/senchalabs/jsduck''; longDescription = ''Documentation generator for Sencha JS frameworks''; }; - name = ''jsduck-4.6.2''; - requiredGems = [ g.rdiscount_2_0_7_1 g.json_1_7_7 g.parallel_0_6_2 g.therubyracer_0_10_2 g.dimensions_1_2_0 ]; - sha256 = ''035w4igfa6yy6234ff4zbiqfjn0bhwqs6k8kji52l7gzgskwmzln''; + name = ''jsduck-4.7.1''; + requiredGems = [ g.rdiscount_2_0_7_1 g.json_1_7_7 g.parallel_0_6_3 g.execjs_1_4_0 g.therubyracer_0_10_2 g.dimensions_1_2_0 ]; + sha256 = ''0yn568ix4j4xpyrsk07cp5c3migsl7ymlg07fsyn5a65yrwyaiyv''; }; json_1_7_7 = { basename = ''json''; @@ -716,16 +739,16 @@ For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf''; requiredGems = [ g.systemu_2_5_2 ]; sha256 = ''1vd9l1d0lc0sq3rn1ya816wrzgxxqdzq6pgq0y0435qm6ikwy7ch''; }; - mail_2_4_4 = { + mail_2_5_3 = { basename = ''mail''; meta = { description = ''Mail provides a nice Ruby DSL for making, sending and reading emails.''; homepage = ''http://github.com/mikel/mail''; longDescription = ''A really Ruby Mail handler.''; }; - name = ''mail-2.4.4''; + name = ''mail-2.5.3''; requiredGems = [ g.mime_types_1_21 g.treetop_1_4_12 g.i18n_0_6_4 ]; - sha256 = ''0idylz5pnlz34mrxm7gs9jbll2c0k0y9dq2qarhxk30gwyvjaxi3''; + sha256 = ''1afr3acz7vsvr4gp6wnrkw1iwbjhf14mh8g8mlm40r86wcwzr39k''; }; mime_types_1_21 = { basename = ''mime_types''; @@ -770,16 +793,16 @@ added from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp requiredGems = [ ]; sha256 = ''035vs1knnnjsb8arfp8vx75warvwcdpiljjwv38lqljai9v8fq53''; }; - multi_json_1_6_1 = { + multi_json_1_7_2 = { basename = ''multi_json''; meta = { description = ''A gem to provide swappable JSON backends.''; homepage = ''http://github.com/intridea/multi_json''; longDescription = ''A gem to provide easy switching between different JSON backends, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, and OkJson.''; }; - name = ''multi_json-1.6.1''; + name = ''multi_json-1.7.2''; requiredGems = [ ]; - sha256 = ''0p33swcl9i97wvv0cq9jkdl8q7xbc3j07apy35vsgldnhw99krcg''; + sha256 = ''17mfs58bilkn2b9g3ggh6pz1w4c2a72mqsr6zf0qd8vahw5h158q''; }; multipart_post_1_2_0 = { basename = ''multipart_post''; @@ -836,7 +859,7 @@ added from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp requiredGems = [ ]; sha256 = ''0kwrbkkg0gxibhsz9dpd5zabcf2wqsicg28yiazyb3dc9dslk26k''; }; - nokogiri_1_5_6 = { + nokogiri_1_5_9 = { basename = ''nokogiri''; meta = { description = ''Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser''; @@ -847,9 +870,9 @@ many features is the ability to search documents via XPath or CSS3 selectors. XML is like violence - if it doesn’t solve your problems, you are not using enough of it.''; }; - name = ''nokogiri-1.5.6''; + name = ''nokogiri-1.5.9''; requiredGems = [ ]; - sha256 = ''1235h8k242f6yi5qgb8rfcx6gp7g99djwqgrz0vb6w12pbp9kar8''; + sha256 = ''08qx4p3p6dd1yh58c4waz5rjmkzv3v315fr0l6n0dgkg71dczbi9''; }; papertrail_0_9_7 = { basename = ''papertrail''; @@ -859,7 +882,7 @@ enough of it.''; longDescription = ''Command-line client for Papertrail hosted log management service. Tails and searches app server logs and system syslog. Supports Boolean search and works with grep and pipe output (Unix).''; }; name = ''papertrail-0.9.7''; - requiredGems = [ g.addressable_2_3_3 g.yajl_ruby_1_1_0 g.chronic_0_9_1 g.faraday_0_8_6 g.faraday_middleware_0_8_8 ]; + requiredGems = [ g.addressable_2_3_3 g.yajl_ruby_1_1_0 g.chronic_0_9_1 g.faraday_0_8_7 g.faraday_middleware_0_8_8 ]; sha256 = ''0v0m1v0qabbr9pmyl77znz39qy1m7p0xwvf3lf9hyq6n524f2dwr''; }; papertrail_cli_0_9_3 = { @@ -873,15 +896,15 @@ enough of it.''; requiredGems = [ g.papertrail_0_9_7 ]; sha256 = ''1914dcfqsmw5rl4xd1zwjrfbgwglyncxm8km06bgxaqn4wnaq5iv''; }; - parallel_0_6_2 = { + parallel_0_6_3 = { basename = ''parallel''; meta = { description = ''Run any kind of code in parallel processes''; - homepage = ''http://github.com/grosser/parallel''; + homepage = ''https://github.com/grosser/parallel''; }; - name = ''parallel-0.6.2''; + name = ''parallel-0.6.3''; requiredGems = [ ]; - sha256 = ''05rdbb1jqv0179wjfj74a1739rsqv7ijf4jp1i5s6lzh878c6l6p''; + sha256 = ''17mg4vfx1c4z7399azf982a3cn522m43kavdqfhfs6i89m7z0l9n''; }; polyglot_0_3_3 = { basename = ''polyglot''; @@ -981,27 +1004,27 @@ request helpers feature.''; requiredGems = [ g.rack_1_5_2 ]; sha256 = ''01mk715ab5qnqf6va8k3hjsvsmplrfqpz6g58qw4m3l8mim0p4ky''; }; - rails_3_2_12 = { + rails_3_2_13 = { basename = ''rails''; meta = { description = ''Full-stack web application framework.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.''; }; - name = ''rails-3.2.12''; - requiredGems = [ g.activesupport_3_2_12 g.actionpack_3_2_12 g.activerecord_3_2_12 g.activeresource_3_2_12 g.actionmailer_3_2_12 g.railties_3_2_12 g.bundler_1_3_4 ]; - sha256 = ''1jjnm74nzl5v3461c0mrbpa471yd6s8hnkmnxb64c2rm95c61wxz''; + name = ''rails-3.2.13''; + requiredGems = [ g.activesupport_3_2_13 g.actionpack_3_2_13 g.activerecord_3_2_13 g.activeresource_3_2_13 g.actionmailer_3_2_13 g.railties_3_2_13 g.bundler_1_3_4 ]; + sha256 = ''1f5w4ivy0jxpjf1gkav064i0gd5x9xqnznwrkbc3slc9savprifz''; }; - railties_3_2_12 = { + railties_3_2_13 = { basename = ''railties''; meta = { description = ''Tools for creating, working with, and running Rails applications.''; homepage = ''http://www.rubyonrails.org''; longDescription = ''Rails internals: application bootup, plugins, generators, and rake tasks.''; }; - name = ''railties-3.2.12''; - requiredGems = [ g.rake_10_0_3 g.rack_ssl_1_3_3 g.thor_0_17_0 g.rdoc_3_12_2 g.activesupport_3_2_12 g.actionpack_3_2_12 ]; - sha256 = ''0d8wy1n591x12bigj3jh8c9djzi8k68vh14342mc22raxwp5rwdw''; + name = ''railties-3.2.13''; + requiredGems = [ g.rake_10_0_4 g.rack_ssl_1_3_3 g.thor_0_18_0 g.rdoc_3_12_2 g.activesupport_3_2_13 g.actionpack_3_2_13 ]; + sha256 = ''01wbqfnlrs9nbs0b97dbxh7aap2bma7my530pcggxdf8ckms8kr9''; }; rake_0_9_2_2 = { basename = ''rake''; @@ -1025,16 +1048,16 @@ request helpers feature.''; requiredGems = [ ]; sha256 = ''09kyh351gddn6gjz255hbaza1cw235xvfz9dc15rhyq9phvqdphc''; }; - rake_10_0_3 = { + rake_10_0_4 = { basename = ''rake''; meta = { description = ''Ruby based make-like utility.''; homepage = ''http://rake.rubyforge.org''; longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.''; }; - name = ''rake-10.0.3''; + name = ''rake-10.0.4''; requiredGems = [ ]; - sha256 = ''09vvf3ylhdkr10vz7ajl3c7ql6dsnzkh3qclpafar433bzadfbpf''; + sha256 = ''032z0csyi5bjfgzq3winvqvi9fpf3bfx518hzzapkfy90y702ds1''; }; rb_fsevent_0_9_3 = { basename = ''rb_fsevent''; @@ -1202,7 +1225,7 @@ See RDoc for a description of RDoc's markup and basic use.''; longDescription = ''WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application.''; }; name = ''selenium-webdriver-2.31.0''; - requiredGems = [ g.multi_json_1_6_1 g.rubyzip_0_9_9 g.childprocess_0_3_9 g.websocket_1_0_7 ]; + requiredGems = [ g.multi_json_1_7_2 g.rubyzip_0_9_9 g.childprocess_0_3_9 g.websocket_1_0_7 ]; sha256 = ''1nv3ff31g183kdb97jjz0y7ny3vdnccd09pgblpj87bzhrrdfv3r''; }; servolux_0_10_0 = { @@ -1227,7 +1250,7 @@ interpreters.''; longDescription = ''Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.''; }; name = ''sinatra-1.3.2''; - requiredGems = [ g.rack_1_5_2 g.rack_protection_1_5_0 g.tilt_1_3_5 ]; + requiredGems = [ g.rack_1_5_2 g.rack_protection_1_5_0 g.tilt_1_3_6 ]; sha256 = ''05blf915zpiwyz7agcn9rwdmddwxz0z4l3gd4qlqmrgd2vkw4sxc''; }; sprockets_2_2_2 = { @@ -1238,7 +1261,7 @@ interpreters.''; longDescription = ''Sprockets is a Rack-based asset packaging system that concatenates and serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.''; }; name = ''sprockets-2.2.2''; - requiredGems = [ g.hike_1_2_1 g.multi_json_1_6_1 g.rack_1_5_2 g.tilt_1_3_5 ]; + requiredGems = [ g.hike_1_2_1 g.multi_json_1_7_2 g.rack_1_5_2 g.tilt_1_3_6 ]; sha256 = ''15ngw3bjbyr31ygzmmdxxa30ylah6pdn8akgdy9w30vfx2vr7s7s''; }; syslog_protocol_0_9_2 = { @@ -1274,38 +1297,38 @@ interpreters.''; requiredGems = [ g.libv8_3_3_10_4 ]; sha256 = ''111hm2l613v06sy7pzjzmnyi4x11rg3c2syhnpv8fn0wnn9rdiyb''; }; - thin_1_5_0 = { + thin_1_5_1 = { basename = ''thin''; meta = { description = ''A thin and fast web server''; homepage = ''http://code.macournoyer.com/thin/''; longDescription = ''A thin and fast web server''; }; - name = ''thin-1.5.0''; + name = ''thin-1.5.1''; requiredGems = [ g.rack_1_5_2 g.eventmachine_1_0_3 g.daemons_1_1_9 ]; - sha256 = ''14sd2qbbk6y108z6v723mh3f1mk8s4fwxmmn9f8dk4xkhk4rwvq1''; + sha256 = ''0hrq9m3hb6pm8yrqshhg0gafkphdpvwcqmr7k722kgdisp3w91ga''; }; - thor_0_17_0 = { + thor_0_18_0 = { basename = ''thor''; meta = { description = ''A scripting framework that replaces rake, sake and rubigen''; homepage = ''http://whatisthor.com/''; longDescription = ''A scripting framework that replaces rake, sake and rubigen''; }; - name = ''thor-0.17.0''; + name = ''thor-0.18.0''; requiredGems = [ ]; - sha256 = ''0gf46qafcfgmi20a2mnb3wkd9y6spgy2hq22h70377daj4zjxla2''; + sha256 = ''0m7pl518j5q1ymgxmsi6xfjp6k40mwbmzk33s760v53azwxkfxan''; }; - tilt_1_3_5 = { + tilt_1_3_6 = { basename = ''tilt''; meta = { description = ''Generic interface to multiple Ruby template engines''; homepage = ''http://github.com/rtomayko/tilt/''; longDescription = ''Generic interface to multiple Ruby template engines''; }; - name = ''tilt-1.3.5''; + name = ''tilt-1.3.6''; requiredGems = [ ]; - sha256 = ''081saxdxnal4ky38a904jw3n2837m80g211w0zm5rx6m712mb6qd''; + sha256 = ''1yz6zfnwq0qyjn71115vd63ly8zm1jss0b2v7fbcbzzj9lrnq9y6''; }; tins_0_7_2 = { basename = ''tins''; From 0866ec1aa7679d2683469f301d5e6ccbcddd39f2 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:52:27 -0400 Subject: [PATCH 05/98] Add the nix-build `result' symlink and cpan files to gitignore Signed-off-by: Shea Levy --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) 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 From f39310b525cc48f05eb6f025ec565a4722ed4f57 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 09:59:18 -0400 Subject: [PATCH 06/98] Add right_aws gem Signed-off-by: Shea Levy --- .../interpreters/ruby/generated.nix | 71 ++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/generated.nix b/pkgs/development/interpreters/ruby/generated.nix index 13ee31bf44f..d4bb7fa4f2d 100644 --- a/pkgs/development/interpreters/ruby/generated.nix +++ b/pkgs/development/interpreters/ruby/generated.nix @@ -71,6 +71,8 @@ g: # Get dependencies from patched gems rdiscount = g.rdiscount_2_0_7_1; rdoc = g.rdoc_3_12_2; remote_syslog = g.remote_syslog_1_6_13; + right_aws = g.right_aws_3_0_5; + right_http_connection = g.right_http_connection_1_3_0; rjb = g.rjb_1_4_6; rspec = g.rspec_2_11_0; rspec_core = g.rspec_core_2_11_1; @@ -98,7 +100,7 @@ g: # Get dependencies from patched gems xml_simple = g.xml_simple_1_1_1; yajl_ruby = g.yajl_ruby_1_1_0; }; - gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''bitbucket-backup'' ''buildr'' ''fakes3'' ''foreman'' ''jsduck'' ''nix'' ''papertrail-cli'' ''rails'' ''rake'' ''rb-fsevent'' ''remote_syslog'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''thin'' ''uuid'' ]; + gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''bitbucket-backup'' ''buildr'' ''fakes3'' ''foreman'' ''jsduck'' ''nix'' ''papertrail-cli'' ''rails'' ''rake'' ''rb-fsevent'' ''remote_syslog'' ''right_aws'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''thin'' ''uuid'' ]; gems = { ZenTest_4_9_0 = { basename = ''ZenTest''; @@ -1106,6 +1108,73 @@ See RDoc for a description of RDoc's markup and basic use.''; requiredGems = [ g.servolux_0_10_0 g.file_tail_1_0_12 g.eventmachine_1_0_3 g.eventmachine_tail_0_6_4 g.syslog_protocol_0_9_2 g.em_resolv_replace_1_1_3 ]; sha256 = ''0q35j02k2l3fw3fdzq0i3rd6chsqr982gj13f3m3lsxm7kms03nw''; }; + right_aws_3_0_5 = { + basename = ''right_aws''; + meta = { + description = ''The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.''; + longDescription = ''== DESCRIPTION: + +The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront. +These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon. +The RightScale AWS gems comprise: + +- RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the + associated EBS (Elastic Block Store) +- RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service) +- RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01) +- RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01) +- RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB) +- RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service + +== FEATURES: + +- Full programmmatic access to EC2, EBS, S3, SQS, SDB, and CloudFront. +- Complete error handling: all operations check for errors and report complete + error information by raising an AwsError. +- Persistent HTTP connections with robust network-level retry layer using + RightHttpConnection). This includes socket timeouts and retries. +- Robust HTTP-level retry layer. Certain (user-adjustable) HTTP errors returned + by Amazon's services are classified as temporary errors. + These errors are automaticallly retried using exponentially increasing intervals. + The number of retries is user-configurable. +- Fast REXML-based parsing of responses (as fast as a pure Ruby solution allows). +- Uses libxml (if available) for faster response parsing. +- Support for large S3 list operations. Buckets and key subfolders containing + many (> 1000) keys are listed in entirety. Operations based on list (like + bucket clear) work on arbitrary numbers of keys. +- Support for streaming GETs from S3, and streaming PUTs to S3 if the data source is a file. +- Support for single-threaded usage, multithreaded usage, as well as usage with multiple + AWS accounts. +- Support for both first- and second-generation SQS (API versions 2007-05-01 + and 2008-01-01). These versions of SQS are not compatible. +- Support for signature versions 0 and 1 on SQS, SDB, and EC2. +- Interoperability with any cloud running Eucalyptus (http://eucalyptus.cs.ucsb.edu) +- Test suite (requires AWS account to do "live" testing). +''; + }; + name = ''right_aws-3.0.5''; + requiredGems = [ g.right_http_connection_1_3_0 ]; + sha256 = ''0pxdmxmqiidy3dpxsp4l0b1l6nq9b1sh4p1gkzalqm4l24646h4k''; + }; + right_http_connection_1_3_0 = { + basename = ''right_http_connection''; + meta = { + description = ''RightScale's robust HTTP/S connection module''; + homepage = ''http://rightscale.rubyforge.org/''; + longDescription = ''Rightscale::HttpConnection is a robust HTTP/S library. It implements a retry +algorithm for low-level network errors. + +== FEATURES: + +- provides put/get streaming +- does configurable retries on connect and read timeouts, DNS failures, etc. +- HTTPS certificate checking +''; + }; + name = ''right_http_connection-1.3.0''; + requiredGems = [ ]; + sha256 = ''0900zy2ya57vhxdkdm2gj7xmvzj4gwm5l7ad0lh68ka3vxhdi7ap''; + }; rjb_1_4_2 = { basename = ''rjb''; meta = { From cfbdb33197b83c49f87d68a4a9b848afe213bc75 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 28 Mar 2013 10:59:40 -0400 Subject: [PATCH 07/98] Add a latest linuxPackages for living on the edge Theoretically this could be automatically detected by finding all packages named 'linux' and choosing the latest, but that's overkill. Just update it when a new kernel is added. Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c75a98a6f24..adeea8c1338 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6030,6 +6030,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; From 65057975c82608b22aeb8701a151a6b7adf332ef Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Thu, 28 Mar 2013 17:19:04 +0100 Subject: [PATCH 08/98] xbmc: bump to 12.1 --- pkgs/applications/video/xbmc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = [ From 4b1042cf02fe4df4c7bc2b97f372d51c3247b209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 27 Mar 2013 20:18:45 +0100 Subject: [PATCH 09/98] pitz: new package pitz is a distributed bug tracker, inspired by ditz. Homepage: http://pitz.tplus1.com/ pitz has a command line interface, pitz-, and a webapp, pitz-webapp. TODO: pitz has a pitz-shell utility that depends on ipython, but when I enabled it it raised an exception. I think it depends on an old IPython version: from IPython.Shell import IPShellEmbed ImportError: No module named Shell A broken pitz-shell doesn't affect the rest of the command line interface nor the webapp, so it is not critical to have it working. There are not many distributed bug trackers out there, so I hope that adding pitz to nixpkgs may inspire people to support pitz (or similar software). --- pkgs/applications/misc/pitz/default.nix | 31 +++++++++++++++++++++++++ pkgs/top-level/python-packages.nix | 23 ++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 pkgs/applications/misc/pitz/default.nix 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/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9c816188b71..cd4ae54f4e0 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; @@ -534,6 +539,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"; From c98af108d00d0adbb2ff9549df54149fefd71f5e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Mar 2013 18:04:49 +0100 Subject: [PATCH 10/98] libvirt: Update to 1.0.3 --- pkgs/development/libraries/libvirt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" ''; From 3abc3f4a6899e5cbb013a18e81ed9360910d0332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:12:27 +0100 Subject: [PATCH 11/98] Updating mupen64plus, and adding a GUI for it. I can't say the GUI works very well... it doesn't find the core properly, but I couldn't find why. --- pkgs/misc/emulators/mupen64plus/default.nix | 22 ++++----------- pkgs/misc/emulators/wxmupen64plus/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 35 insertions(+), 17 deletions(-) create mode 100644 pkgs/misc/emulators/wxmupen64plus/default.nix diff --git a/pkgs/misc/emulators/mupen64plus/default.nix b/pkgs/misc/emulators/mupen64plus/default.nix index d67121fe430..0f59da272ff 100644 --- a/pkgs/misc/emulators/mupen64plus/default.nix +++ b/pkgs/misc/emulators/mupen64plus/default.nix @@ -1,28 +1,16 @@ {stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: stdenv.mkDerivation { - name = "mupen64plus-1.5"; + name = "mupen64plus-1.99.5"; src = fetchurl { - url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; - sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; + url = https://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-1.99.5.tar.gz; + sha1 = "ca80ae446c9591e272e3ec93f0a2a8b01cfcd34e"; }; 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"; + buildPhase = "./m64p_build.sh PREFIX=$out COREDIR=$out/lib/ PLUGINDIR=$out/lib/mupen64plus/ SHAREDIR=$out/share/mupen64plus/"; + installPhase = "./m64p_install.sh PREFIX=$out"; meta = { description = "A Nintendo 64 Emulator"; 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adeea8c1338..15b1aeb4394 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8876,6 +8876,8 @@ let mupen64plus = callPackage ../misc/emulators/mupen64plus { }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + nix = nixStable; nixStable = callPackage ../tools/package-management/nix { From 5f677039c77a4d9c6fcbe9b99980eab34fae65f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:16:40 +0100 Subject: [PATCH 12/98] Adding back the 1.5 expression of mupen64plus It has a GUI, for example. --- pkgs/misc/emulators/mupen64plus/1.5.nix | 33 +++++++++++++++++++++ pkgs/misc/emulators/mupen64plus/default.nix | 22 ++++++++++---- pkgs/top-level/all-packages.nix | 4 ++- 3 files changed, 53 insertions(+), 6 deletions(-) create mode 100644 pkgs/misc/emulators/mupen64plus/1.5.nix 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/mupen64plus/default.nix b/pkgs/misc/emulators/mupen64plus/default.nix index 0f59da272ff..d67121fe430 100644 --- a/pkgs/misc/emulators/mupen64plus/default.nix +++ b/pkgs/misc/emulators/mupen64plus/default.nix @@ -1,16 +1,28 @@ {stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}: stdenv.mkDerivation { - name = "mupen64plus-1.99.5"; + name = "mupen64plus-1.5"; src = fetchurl { - url = https://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-1.99.5.tar.gz; - sha1 = "ca80ae446c9591e272e3ec93f0a2a8b01cfcd34e"; + url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz; + sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq"; }; buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ]; - buildPhase = "./m64p_build.sh PREFIX=$out COREDIR=$out/lib/ PLUGINDIR=$out/lib/mupen64plus/ SHAREDIR=$out/share/mupen64plus/"; - installPhase = "./m64p_install.sh PREFIX=$out"; + 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"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 15b1aeb4394..bfb1d8a4e82 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8876,7 +8876,7 @@ let mupen64plus = callPackage ../misc/emulators/mupen64plus { }; - wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { }; nix = nixStable; @@ -9065,6 +9065,8 @@ let inherit (gnome2) zenity; }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; + x2x = callPackage ../tools/X11/x2x { }; xosd = callPackage ../misc/xosd { }; From e48bbe4c391f69d3b4fd4773a0aa2a5e42562c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 28 Mar 2013 18:34:36 +0100 Subject: [PATCH 13/98] wpa_supplicant: Making a remote patch local. upstream is down --- pkgs/os-specific/linux/wpa_supplicant/default.nix | 8 +------- pkgs/os-specific/linux/wpa_supplicant/libnl.patch | 13 +++++++++++++ 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 pkgs/os-specific/linux/wpa_supplicant/libnl.patch 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 + From 0ad1f787601d8861fe56f9b79976f52f8e073305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?= Date: Thu, 28 Mar 2013 22:57:05 +0100 Subject: [PATCH 14/98] Python3: fix the download URL --- pkgs/development/interpreters/python/3.3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index 7baecad76c6..d81033a5913 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { inherit majorVersion version; src = fetchurl { - url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2"; + url = "http://www.python.org/ftp/python/3.3.1/Python-${version}.tar.bz2"; sha256 = "1pnsbdzbd3750jcy32sv1760lv7am4x3f33jn1kmdmd82za279gv"; }; From 67ce79f5e42b3dbf5fe3ff6099403e81b3f851df Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 13:27:04 +0100 Subject: [PATCH 15/98] set platforms for i3wm --- pkgs/applications/window-managers/i3/default.nix | 1 + 1 file changed, 1 insertion(+) 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; }; } From 67962402894538a7ae50ee70502461d1a3e9a8d4 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Fri, 29 Mar 2013 15:04:02 +0100 Subject: [PATCH 16/98] Add aws-sdk and deps (node library) --- pkgs/top-level/node-packages.nix | 126 +++++++++++++++++++++++++++++-- 1 file changed, 121 insertions(+), 5 deletions(-) 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 { From 2fa4e36946d5013663c01f8652be7bfc22efe777 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Fri, 29 Mar 2013 15:04:59 +0100 Subject: [PATCH 17/98] Add weighttp 0.3 --- pkgs/tools/networking/weighttp/default.nix | 15 +++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 pkgs/tools/networking/weighttp/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfb1d8a4e82..f671d52e418 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1806,6 +1806,8 @@ let libxml2 geoip; }; + weighttp = callPackage ../tools/networking/weighttp { }; + wget = callPackage ../tools/networking/wget { inherit (perlPackages) LWP; }; From 255f402bdd96499f2c40390da482cda897f89858 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Tue, 26 Mar 2013 11:42:18 +0100 Subject: [PATCH 18/98] lightdm: Add lightdm and lightdm-gtk-greeter --- .../lightdm-gtk-greeter/default.nix | 23 +++ .../lightdm-gtk-greeter.patch | 13 ++ .../display-managers/lightdm/default.nix | 25 +++ .../display-managers/lightdm/lightdm.patch | 193 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 5 files changed, 258 insertions(+) create mode 100644 pkgs/applications/display-managers/lightdm-gtk-greeter/default.nix create mode 100644 pkgs/applications/display-managers/lightdm-gtk-greeter/lightdm-gtk-greeter.patch create mode 100644 pkgs/applications/display-managers/lightdm/default.nix create mode 100644 pkgs/applications/display-managers/lightdm/lightdm.patch 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d3e4cca9a2..e8059e4b501 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7739,6 +7739,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) { From 6026c60388df4350bee39f129e9963b26619d6d6 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 16:43:38 +0100 Subject: [PATCH 19/98] spring: bump and fix build --- pkgs/games/spring/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d7146872aa6..05e57e5cbee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8305,7 +8305,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 { }; From 02384dfc93a1891fedbf7984bc29a61147895e97 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:46:59 +0100 Subject: [PATCH 20/98] release-haskell.nix: adapt file to the new release-lib.nix --- pkgs/top-level/release-haskell.nix | 1165 ++++++++++++++-------------- 1 file changed, 581 insertions(+), 584 deletions(-) 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; }; -}) +} From a9c7252a3ed7848f5692f262566b98751365e8ae Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 29 Mar 2013 17:38:59 +0100 Subject: [PATCH 21/98] i3status and i3lock should have same platform as i3wm --- pkgs/applications/window-managers/i3/lock.nix | 2 +- pkgs/applications/window-managers/i3/status.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 12e4c91e24d..2fa43d2730c 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; - }; + platforms = stdenv.lib.plaforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 76fc487ba4a..752f90a1bfd 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.plaforms.all; }; } From 34e0c33d6fefef056509b564bd5317c06011569f Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 29 Mar 2013 12:41:38 -0400 Subject: [PATCH 22/98] Allow overriding perlPackages __overrides is the worst. Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 1 + pkgs/top-level/perl-packages.nix | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05e57e5cbee..31251ccddee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5252,6 +5252,7 @@ let perlPackages = recurseIntoAttrs (import ./perl-packages.nix { inherit pkgs; + __overrides = (config.perlPackageOverrides or (p: {})) pkgs; }); perl510Packages = import ./perl-packages.nix { 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 // { From 2670f68f54789dcfd368602882aadc82ac33d412 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 23/98] haskell-conduit: update to version 1.0.4.2 --- pkgs/development/libraries/haskell/conduit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/conduit/default.nix b/pkgs/development/libraries/haskell/conduit/default.nix index 4d0650747d1..1a5ef7b4f70 100644 --- a/pkgs/development/libraries/haskell/conduit/default.nix +++ b/pkgs/development/libraries/haskell/conduit/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "conduit"; - version = "1.0.4.1"; - sha256 = "1fihn6ixs6cmim5y605w2mzjrcwplr58r835wq9k3arb25d5wnys"; + version = "1.0.4.2"; + sha256 = "11xrqn7jc4vccfwds6hy0d3jpm0d0ycwaszv18xk237zwl63w159"; buildDepends = [ liftedBase mmorph monadControl resourcet text transformers transformersBase void From 8c8b243570615c6eda6c9fba4b22d0ba7b6c2ad4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 24/98] haskell-fclabels: update to version 1.1.5 --- pkgs/development/libraries/haskell/fclabels/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/fclabels/default.nix b/pkgs/development/libraries/haskell/fclabels/default.nix index 9ab8c6a0a3e..7c64e9a2511 100644 --- a/pkgs/development/libraries/haskell/fclabels/default.nix +++ b/pkgs/development/libraries/haskell/fclabels/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "fclabels"; - version = "1.1.4.3"; - sha256 = "10qr0ncsqxg0dg2f73ip873gr342saxhidaf3c6g5vr03cvmmkap"; + version = "1.1.5"; + sha256 = "0g9h1mayzf8v9dg84b54cqjbz9m9hdmj9a2zh0lg2kbc1v7iwlx1"; buildDepends = [ mtl transformers ]; meta = { description = "First class accessor labels"; From 484b5c34d3f7362e8468455523ed6a5cdf17e1ba Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:08 +0100 Subject: [PATCH 25/98] haskell-generic-deriving: update to version 1.5.0 --- .../libraries/haskell/generic-deriving/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/generic-deriving/default.nix b/pkgs/development/libraries/haskell/generic-deriving/default.nix index 8082201e71c..c5a62b967aa 100644 --- a/pkgs/development/libraries/haskell/generic-deriving/default.nix +++ b/pkgs/development/libraries/haskell/generic-deriving/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "generic-deriving"; - version = "1.4.0"; - sha256 = "15av3l4m4qn5by41rkpdvp1kyp3fi9ixvy76wmyj20c46kjbmra7"; + version = "1.5.0"; + sha256 = "1m3hckwpzmarlvm2xq22za3386ady6p89kg7nd8cnjkifnnbz20r"; meta = { description = "Generic programming library for generalised deriving"; license = self.stdenv.lib.licenses.bsd3; From 9f260baa506058fed3dea3753b2fed2e4b36c612 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 26/98] haskell-lens: update to version 3.9.0.2 --- pkgs/development/libraries/haskell/lens/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/lens/default.nix b/pkgs/development/libraries/haskell/lens/default.nix index 1dfd50f69e1..ef0b46b236d 100644 --- a/pkgs/development/libraries/haskell/lens/default.nix +++ b/pkgs/development/libraries/haskell/lens/default.nix @@ -10,8 +10,8 @@ cabal.mkDerivation (self: { pname = "lens"; - version = "3.8.7.3"; - sha256 = "0z28vv3k6zg2zsd3pb1vlhv75q0zjlh4zf1md77cviyyljwc0j09"; + version = "3.9.0.2"; + sha256 = "0ch38z33zgdyzjmc7jqwabwq68iidicpzhbwzpd4fvcqdp27apl2"; buildDepends = [ bifunctors comonad comonadsFd comonadTransformers contravariant distributive filepath genericDeriving hashable From 44cf7ed71c907af437a4fd526d43e51f293648af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 27/98] haskell-liblastfm: update to version 0.1.1.1 --- .../libraries/haskell/liblastfm/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/liblastfm/default.nix b/pkgs/development/libraries/haskell/liblastfm/default.nix index 323f1797fef..096a39b9a3b 100644 --- a/pkgs/development/libraries/haskell/liblastfm/default.nix +++ b/pkgs/development/libraries/haskell/liblastfm/default.nix @@ -1,14 +1,18 @@ -{ cabal, aeson, cereal, cryptoApi, httpConduit, httpTypes, network -, pureMD5, text +{ cabal, aeson, attoparsec, cereal, cryptoApi, httpConduit +, httpTypes, HUnit, network, pureMD5, testFramework +, testFrameworkHunit, text }: cabal.mkDerivation (self: { pname = "liblastfm"; - version = "0.1.1.0"; - sha256 = "1yrgyb0m1gdhsrkv3b8a5a0qii67v9gx1kbv79ixlac60bsm4q95"; + version = "0.1.1.1"; + sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv"; buildDepends = [ aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text ]; + testDepends = [ + aeson attoparsec HUnit testFramework testFrameworkHunit text + ]; meta = { description = "Lastfm API interface"; license = self.stdenv.lib.licenses.mit; From 4ad1be1b3e4828c002bc57f56a8073387160d4fd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 28/98] haskell-multiarg: update to version 0.12.0.0 --- pkgs/development/libraries/haskell/multiarg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/multiarg/default.nix b/pkgs/development/libraries/haskell/multiarg/default.nix index 9af9210d74c..c8a7b479c54 100644 --- a/pkgs/development/libraries/haskell/multiarg/default.nix +++ b/pkgs/development/libraries/haskell/multiarg/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "multiarg"; - version = "0.10.0.0"; - sha256 = "09clgin66i2m0b3ws7di9p15cy9bd144as832xpx4li6cfbg16ip"; + version = "0.12.0.0"; + sha256 = "1v2bfqbjk4wxn5dzd7asqcfidlr9bmwc5yy7awp86ch669kjnbzd"; buildDepends = [ explicitException utf8String ]; meta = { homepage = "https://github.com/massysett/multiarg"; From 71b00ef300e62d8ab41d764ed7eed5d116bb0afe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH 29/98] haskell-unix-compat: update to version 0.4.1.1 --- pkgs/development/libraries/haskell/unix-compat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; From 7d64583919ccdb0eabc53f576b06f9821aeef65b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 01:44:30 +0100 Subject: [PATCH 30/98] haskell-persistent-postgresql: jailbreak to fix build with latest version of postgres-simple --- .../libraries/haskell/persistent-postgresql/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/persistent-postgresql/default.nix b/pkgs/development/libraries/haskell/persistent-postgresql/default.nix index 0ee5e625db4..885ad70f63f 100644 --- a/pkgs/development/libraries/haskell/persistent-postgresql/default.nix +++ b/pkgs/development/libraries/haskell/persistent-postgresql/default.nix @@ -10,6 +10,7 @@ cabal.mkDerivation (self: { aeson conduit monadControl persistent postgresqlLibpq postgresqlSimple text time transformers ]; + jailbreak = true; meta = { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using postgresql"; From 8f2c094801747344346172fa11aa35acd4729b44 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 31/98] haskell-dual-tree: update to version 0.1.0.2 --- pkgs/development/libraries/haskell/dual-tree/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/dual-tree/default.nix b/pkgs/development/libraries/haskell/dual-tree/default.nix index a37b8652150..54f1da65316 100644 --- a/pkgs/development/libraries/haskell/dual-tree/default.nix +++ b/pkgs/development/libraries/haskell/dual-tree/default.nix @@ -2,10 +2,9 @@ cabal.mkDerivation (self: { pname = "dual-tree"; - version = "0.1.0.1"; - sha256 = "09bdid65frccpbh1bs01f7vprq0vfgqsb5bfa4j8yi3q773mycb2"; + version = "0.1.0.2"; + sha256 = "0ys50m8yjksxi33qyk6ql4ldpdzb0fvxqvywi3y46xi16w5yrkb0"; buildDepends = [ monoidExtras newtype semigroups ]; - jailbreak = true; meta = { description = "Rose trees with cached and accumulating monoidal annotations"; license = self.stdenv.lib.licenses.bsd3; From b5bda573d5fd9fde2c657624d6ce5e9100a35af2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 32/98] haskell-monoid-extras: update to version 0.2.2.3 --- pkgs/development/libraries/haskell/monoid-extras/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/monoid-extras/default.nix b/pkgs/development/libraries/haskell/monoid-extras/default.nix index 1161fe817b5..96f254d077e 100644 --- a/pkgs/development/libraries/haskell/monoid-extras/default.nix +++ b/pkgs/development/libraries/haskell/monoid-extras/default.nix @@ -2,10 +2,9 @@ cabal.mkDerivation (self: { pname = "monoid-extras"; - version = "0.2.2.2"; - sha256 = "1fz93hm0sswisvwvbygxvbwmmnzqcxmz9h82i4361wzychf2si22"; + version = "0.2.2.3"; + sha256 = "00yj7wdyznsis82fb7i07s0vz8vsn2mpqk7jkgl9xxa57gk1rsax"; buildDepends = [ semigroups ]; - jailbreak = true; meta = { description = "Various extra monoid-related definitions and utilities"; license = self.stdenv.lib.licenses.bsd3; From 0e32b1462bf0806f00f315c30eb9a7edec2c5da9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 14:40:12 +0100 Subject: [PATCH 33/98] haskell-vector-space-points: update to version 0.1.2.1 --- .../libraries/haskell/vector-space-points/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; From 504d9563a4558d3b6de6999eb2de0da002ae96fe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 34/98] haskell-case-insensitive: update to version 1.0.0.1 --- .../libraries/haskell/case-insensitive/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/case-insensitive/default.nix b/pkgs/development/libraries/haskell/case-insensitive/default.nix index c43ea95322d..06a75132869 100644 --- a/pkgs/development/libraries/haskell/case-insensitive/default.nix +++ b/pkgs/development/libraries/haskell/case-insensitive/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "case-insensitive"; - version = "1.0"; - sha256 = "1x437b5yyh930a5dr642lvfdgpx12w4ms70whiw1ffjjhssb88zk"; + version = "1.0.0.1"; + sha256 = "1yp8895qvxcmai0hvxdq77qss9cia2f9fyn6rm0hln3rcx8n53xm"; buildDepends = [ deepseq hashable text ]; testDepends = [ HUnit testFramework testFrameworkHunit text ]; meta = { From c24df87bfeb4a5c7f3467858dd0eb0acb1ba3002 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 35/98] haskell-certificate: update to version 1.3.6 --- pkgs/development/libraries/haskell/certificate/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/certificate/default.nix b/pkgs/development/libraries/haskell/certificate/default.nix index ac792514386..0adaabb4753 100644 --- a/pkgs/development/libraries/haskell/certificate/default.nix +++ b/pkgs/development/libraries/haskell/certificate/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "certificate"; - version = "1.3.5"; - sha256 = "17g2alyib89y2k8jjg4b6jskz0ndpr92yi8hzra7vw7ygfi5mi4j"; + version = "1.3.6"; + sha256 = "1w7xndslapy4ycgf2xshgx90i3v04nsck9l2mzc74nrnwm817b2m"; isLibrary = true; isExecutable = true; buildDepends = [ From deeb058dfbdf83299448af479fb8286f3d213363 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 36/98] haskell-diagrams-lib: update to version 0.6.0.2 --- pkgs/development/libraries/haskell/diagrams/lib.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/haskell/diagrams/lib.nix b/pkgs/development/libraries/haskell/diagrams/lib.nix index d83a43bbadb..ae466ad2623 100644 --- a/pkgs/development/libraries/haskell/diagrams/lib.nix +++ b/pkgs/development/libraries/haskell/diagrams/lib.nix @@ -4,13 +4,12 @@ cabal.mkDerivation (self: { pname = "diagrams-lib"; - version = "0.6.0.1"; - sha256 = "00ysdppl2jv0kspj0pjy8qj8shc9gg6g10lkq62vlvr39wnxx6yj"; + version = "0.6.0.2"; + sha256 = "0jxpbggwgbjnl2yx7y0zcjs2fls7y1wm33wllq5j9snkiz1n81hb"; buildDepends = [ active colour dataDefault diagramsCore monoidExtras newtype NumInstances semigroups vectorSpace ]; - jailbreak = true; meta = { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; From eb665f3b3dd9ccd370a5070c062c56d5c9f66556 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 37/98] haskell-lifted-base: update to version 0.2.0.3 --- pkgs/development/libraries/haskell/lifted-base/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/lifted-base/default.nix b/pkgs/development/libraries/haskell/lifted-base/default.nix index 2eaf950023a..bd3dd503245 100644 --- a/pkgs/development/libraries/haskell/lifted-base/default.nix +++ b/pkgs/development/libraries/haskell/lifted-base/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "lifted-base"; - version = "0.2.0.2"; - sha256 = "19xzparj0k5h4wx71gvbd7l653fak1p57za236sncmar8cps5pdx"; + version = "0.2.0.3"; + sha256 = "1sfrak4jf3mvns9y6iadyhj8zvy4wyrqiaxihrxv2qby14c45psx"; buildDepends = [ baseUnicodeSymbols monadControl transformersBase ]; From 717d894f8389742fffcf9abbddb36c5da5b2ff8b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 38/98] haskell-profunctors: update to version 3.3.0.1 --- pkgs/development/libraries/haskell/profunctors/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/profunctors/default.nix b/pkgs/development/libraries/haskell/profunctors/default.nix index 936230131e7..f141959dcf1 100644 --- a/pkgs/development/libraries/haskell/profunctors/default.nix +++ b/pkgs/development/libraries/haskell/profunctors/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "profunctors"; - version = "3.3"; - sha256 = "0cvar0qr2yf0lmqwhiy2ibajiq9cmqy2ikwn8l5mdxxh5q5rwgjj"; + version = "3.3.0.1"; + sha256 = "16d7xg929r4smmmcgi54bz7rsjxs6psksrdvzl4336sjpp3dw5h2"; buildDepends = [ comonad tagged ]; meta = { homepage = "http://github.com/ekmett/profunctors/"; From 78b8be47e2980d40b29955f394350c64d2fdcbcf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 13:30:50 +0100 Subject: [PATCH 39/98] haskell-reflection: update to version 1.2.0.1 --- pkgs/development/libraries/haskell/reflection/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/reflection/default.nix b/pkgs/development/libraries/haskell/reflection/default.nix index 9d3acb72d6b..d18f711cab3 100644 --- a/pkgs/development/libraries/haskell/reflection/default.nix +++ b/pkgs/development/libraries/haskell/reflection/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "reflection"; - version = "1.1.7"; - sha256 = "073v9y09fvh7nsfqp1jp2ncrq0xkcv5fvikl769ghv2ycgkfxl4z"; + version = "1.2.0.1"; + sha256 = "17pzw45yr13nq9y9nb3siypj5amkixy82xm8bpy0nzs1cdfyawx6"; buildDepends = [ tagged ]; meta = { homepage = "http://github.com/ekmett/reflection"; From a1d4a00dcdcbe8bae546f055b1c5fa21ea87bce4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:35:50 +0100 Subject: [PATCH 40/98] haskell-snap: jailbreak to support building with lens 3.9.0.2 --- pkgs/development/libraries/haskell/snap/snap.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/snap/snap.nix b/pkgs/development/libraries/haskell/snap/snap.nix index f5da92f6c8e..8462b85caf9 100644 --- a/pkgs/development/libraries/haskell/snap/snap.nix +++ b/pkgs/development/libraries/haskell/snap/snap.nix @@ -20,6 +20,9 @@ cabal.mkDerivation (self: { unorderedContainers vector vectorAlgorithms xmlhtml ]; jailbreak = true; + patchPhase = '' + sed -i -e 's|lens .*>= 3.7.6.*$|lens|' snap.cabal + ''; meta = { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; From 8a134745de8e81282c6aaedb33940244246df1b0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:41:26 +0100 Subject: [PATCH 41/98] haskell-hspec-expectations: add version 0.3.2 --- .../{default.nix => 0.3.0.3.nix} | 0 .../haskell/hspec-expectations/0.3.2.nix | 17 +++++++++++++++++ pkgs/top-level/haskell-packages.nix | 4 +++- 3 files changed, 20 insertions(+), 1 deletion(-) rename pkgs/development/libraries/haskell/hspec-expectations/{default.nix => 0.3.0.3.nix} (100%) create mode 100644 pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix diff --git a/pkgs/development/libraries/haskell/hspec-expectations/default.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix similarity index 100% rename from pkgs/development/libraries/haskell/hspec-expectations/default.nix rename to pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix new file mode 100644 index 00000000000..52defb43e4c --- /dev/null +++ b/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix @@ -0,0 +1,17 @@ +{ cabal, hspec, HUnit, markdownUnlit, silently }: + +cabal.mkDerivation (self: { + pname = "hspec-expectations"; + version = "0.3.2"; + sha256 = "0962wlngqck0wc7mcby9bzci1s8d9a91vsm39rnab5wifhc2c6xi"; + buildDepends = [ HUnit ]; + testDepends = [ hspec HUnit markdownUnlit silently ]; + doCheck = false; + meta = { + homepage = "https://github.com/sol/hspec-expectations#readme"; + description = "Catchy combinators for HUnit"; + license = self.stdenv.lib.licenses.mit; + platforms = self.ghc.meta.platforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 37fe7cbe281..70f6aac7430 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1109,7 +1109,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspec = callPackage ../development/libraries/haskell/hspec {}; - hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {}; + hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; + hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; + hspecExpectations = self.hspecExpectations_0_3_0_3; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {}; From 82030c4ba21d8c202372e78962f7340ef768fb11 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 16:43:26 +0100 Subject: [PATCH 42/98] haskell-split: add version 0.2.1.3 --- .../libraries/haskell/split/{0.2.1.2.nix => 0.2.1.3.nix} | 4 ++-- pkgs/top-level/haskell-packages.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/development/libraries/haskell/split/{0.2.1.2.nix => 0.2.1.3.nix} (81%) 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/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 70f6aac7430..17a43606a4e 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 @@ -1697,8 +1697,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 {}; From e83c6b27495fee55e83618e61883692be8ba83b0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 17:05:40 +0100 Subject: [PATCH 43/98] haskell-language-c-quote: add version 0.7.1 --- .../{default.nix => 0.4.4.nix} | 0 .../haskell/language-c-quote/0.7.1.nix | 28 +++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 4 ++- 3 files changed, 31 insertions(+), 1 deletion(-) rename pkgs/development/libraries/haskell/language-c-quote/{default.nix => 0.4.4.nix} (100%) create mode 100644 pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix diff --git a/pkgs/development/libraries/haskell/language-c-quote/default.nix b/pkgs/development/libraries/haskell/language-c-quote/0.4.4.nix similarity index 100% rename from pkgs/development/libraries/haskell/language-c-quote/default.nix rename to pkgs/development/libraries/haskell/language-c-quote/0.4.4.nix diff --git a/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix b/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix new file mode 100644 index 00000000000..1ce3ceaac82 --- /dev/null +++ b/pkgs/development/libraries/haskell/language-c-quote/0.7.1.nix @@ -0,0 +1,28 @@ +{ cabal, alex, exceptionMtl, exceptionTransformers, filepath, happy +, haskellSrcMeta, HUnit, mainlandPretty, mtl, srcloc, syb, symbol +, testFramework, testFrameworkHunit +}: + +cabal.mkDerivation (self: { + pname = "language-c-quote"; + version = "0.7.1"; + sha256 = "14gh944wpwg4csxwswr9jlll4p5wc3x1fhbqsfh9lqf98ys7ij3z"; + buildDepends = [ + exceptionMtl exceptionTransformers filepath haskellSrcMeta + mainlandPretty mtl srcloc syb symbol + ]; + testDepends = [ + HUnit srcloc symbol testFramework testFrameworkHunit + ]; + buildTools = [ alex happy ]; + meta = { + homepage = "http://www.eecs.harvard.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + maintainers = [ + self.stdenv.lib.maintainers.andres + self.stdenv.lib.maintainers.simons + ]; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 17a43606a4e..479c140900a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1191,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 {}; From 905c058b6d20109bb91cde6da709bbbefdfa961c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 17:18:31 +0100 Subject: [PATCH 44/98] haskell-accelerate-cuda needs old version of language-c-quote. --- pkgs/top-level/haskell-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 479c140900a..9b3c33c4198 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -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 {}; From eb2e3f648aa78f9fa8395eefcbb37974b4f14366 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 29 Mar 2013 13:07:26 -0400 Subject: [PATCH 45/98] Pass overrides for perl510Packages too Signed-off-by: Shea Levy --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 31251ccddee..f94765a2cbc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5260,6 +5260,7 @@ let perl = perl510; buildPerlPackage = import ../development/perl-modules/generic perl510; }; + __overrides = (config.perl510PackageOverrides or (p: {})) pkgs; }; perlXMLParser = perlPackages.XMLParser; From 6c890824bddecb77b7450e168d75fad963183451 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 29 Mar 2013 18:24:24 +0100 Subject: [PATCH 46/98] fixed typo from previous commit --- pkgs/applications/window-managers/i3/lock.nix | 3 ++- pkgs/applications/window-managers/i3/status.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 2fa43d2730c..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.plaforms.all; }; + platforms = stdenv.lib.platforms.all; + }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 752f90a1bfd..7317f17bb8b 100644 --- a/pkgs/applications/window-managers/i3/status.nix +++ b/pkgs/applications/window-managers/i3/status.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { homepage = http://i3wm.org; maintainers = [ stdenv.lib.maintainers.garbas ]; license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.plaforms.all; + platforms = stdenv.lib.platforms.all; }; } From 92f72cb80fbcadbcf41797add1004cd344fc6d87 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 18:32:32 +0100 Subject: [PATCH 47/98] pwgen, wgetpaste: set platforms --- pkgs/tools/security/pwgen/default.nix | 1 + pkgs/tools/text/wgetpaste/default.nix | 1 + 2 files changed, 2 insertions(+) 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; }; } From 7405ddee2f3f33a6ebc1a1055a4a1190193e5952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 18:33:28 +0100 Subject: [PATCH 48/98] gcc47: fixing the arm eabi hf build Picking an upstream gcc patch. --- .../compilers/gcc/4.7/arm-eabi.patch | 230 ++++++++++++++++++ .../development/compilers/gcc/4.7/default.nix | 2 +- 2 files changed, 231 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/compilers/gcc/4.7/arm-eabi.patch 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 Date: Fri, 29 Mar 2013 18:35:50 +0100 Subject: [PATCH 49/98] ncmpcpp: set platforms --- pkgs/applications/audio/ncmpcpp/default.nix | 1 + 1 file changed, 1 insertion(+) 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; }; } From 9a31d2ef0d09291c71e12a23f2fe10dc85c950b6 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Fri, 29 Mar 2013 19:02:51 +0100 Subject: [PATCH 50/98] aircrack-ng: bump --- pkgs/tools/networking/aircrack-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; From 694ecd473742e15da227c3cd86c926855cf99f79 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 19:04:00 +0100 Subject: [PATCH 51/98] libtirpc: update to version 0.2.3 --- pkgs/development/libraries/ti-rpc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From bd1c8a50489b72f7c55cacb50bed29e2de5be6c8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 29 Mar 2013 20:08:34 +0100 Subject: [PATCH 52/98] prettytable: Update to 0.7.1 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 11890bf0b3c..993dbd3291b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2776,11 +2776,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 = { From 4576896ef55e57e914f97a6599ed4b74e4bd4641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:34:53 +0100 Subject: [PATCH 53/98] pthread-win32: use `mingw_headers3', for consistency with `gccCrossStageFinal' --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f94765a2cbc..c9037e91b18 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6329,7 +6329,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 { }; From ea304762fee1f13ad220c784299261d048761929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:35:11 +0100 Subject: [PATCH 54/98] pthread-win32: don't propagate `mingw_headers' --- pkgs/os-specific/windows/pthread-w32/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) 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"; From e80ec28da17783cfe016f10f90ae53ca14907c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 21:46:00 +0100 Subject: [PATCH 55/98] libiconv: disable stripping when cross-compiling --- pkgs/development/libraries/libiconv/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) 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"; From 64e4027d91fa0b21ed08a338fd258d2d2858f677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:49:31 +0100 Subject: [PATCH 56/98] Making omxplayer build with gcc47 --- pkgs/top-level/all-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c9037e91b18..01793ade525 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7547,6 +7547,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 { }; From a76a9f783e53591372698f5bd09cb4ca3dc18699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:53:44 +0100 Subject: [PATCH 57/98] Adding omxplayer, for the raspberrypi. --- pkgs/applications/video/omxplayer/default.nix | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 pkgs/applications/video/omxplayer/default.nix 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+"; + }; +} From c7307122bf76b6c69fe3249080b590d39245827c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 29 Mar 2013 21:56:01 +0100 Subject: [PATCH 58/98] gcc47: Making the arm patch only for arm. I don't know how, but it seems to break mips (noticed by ludo): http://hydra.nixos.org/build/4530024 --- pkgs/development/compilers/gcc/4.7/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc/4.7/default.nix b/pkgs/development/compilers/gcc/4.7/default.nix index 3925ce1f7fa..92411e6687e 100644 --- a/pkgs/development/compilers/gcc/4.7/default.nix +++ b/pkgs/development/compilers/gcc/4.7/default.nix @@ -54,7 +54,8 @@ let version = "4.7.2"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; - patches = [ ./arm-eabi.patch ] + patches = [] + ++ optional stdenv.isArm [ ./arm-eabi.patch ] ++ optional (cross != null) ./libstdc++-target.patch # ++ optional noSysDirs ./no-sys-dirs.patch # The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its From 4d8cd0aa241c0949edf3b574b6509732249ed76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 29 Mar 2013 22:04:25 +0100 Subject: [PATCH 59/98] glibc: hurd: Use the old `rpcgen-path.patch'. --- pkgs/development/libraries/glibc/2.17/common.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/glibc/2.17/common.nix b/pkgs/development/libraries/glibc/2.17/common.nix index fb4083066de..9c1a43a97d7 100644 --- a/pkgs/development/libraries/glibc/2.17/common.nix +++ b/pkgs/development/libraries/glibc/2.17/common.nix @@ -32,14 +32,17 @@ stdenv.mkDerivation ({ enableParallelBuilding = true; patches = - [ /* Have rpcgen(1) look for cpp(1) in $PATH. */ - ./rpcgen-path.patch + [ /* Have rpcgen(1) look for cpp(1) in $PATH. + On GNU/Hurd, use the old version of the patch since the new one + doesn't apply. */ + (if hurdHeaders != null + then ../2.13/rpcgen-path.patch + else ./rpcgen-path.patch) /* Allow NixOS and Nix to handle the locale-archive. */ ./nix-locale-archive.patch - /* Don't use /etc/ld.so.cache, for non-NixOS systems. Currently - disabled on GNU/Hurd, which uses a more recent libc snapshot. */ + /* Don't use /etc/ld.so.cache, for non-NixOS systems. */ ./dont-use-system-ld-so-cache.patch /* Without this patch many KDE binaries crash. */ From 9c92db9e52ee901ef9e15a9f687ba28b48867798 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Mar 2013 23:55:13 +0100 Subject: [PATCH 60/98] haskell-hackage-db: update to version 1.5 --- pkgs/development/libraries/haskell/hackage-db/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/hackage-db/default.nix b/pkgs/development/libraries/haskell/hackage-db/default.nix index 82175abb17e..f3d029a5ea7 100644 --- a/pkgs/development/libraries/haskell/hackage-db/default.nix +++ b/pkgs/development/libraries/haskell/hackage-db/default.nix @@ -1,10 +1,10 @@ -{ cabal, Cabal, filepath, tar }: +{ cabal, Cabal, filepath, tar, utf8String }: cabal.mkDerivation (self: { pname = "hackage-db"; - version = "1.4"; - sha256 = "12z1ak21xc9v373j956gz8l4ryj0582lgbl9ykp8q46n9b8sxfph"; - buildDepends = [ Cabal filepath tar ]; + version = "1.5"; + sha256 = "1m7f6vwgjzibk8rd14y6m62xv5969ns94a57sansi9d83q6rj9iv"; + buildDepends = [ Cabal filepath tar utf8String ]; meta = { homepage = "http://github.com/peti/hackage-db"; description = "provide access to the Hackage database via Data.Map"; From 6692fbd0aea90f736f6cbe77d7bb636c7d73786c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 30 Mar 2013 00:12:36 +0100 Subject: [PATCH 61/98] haskell-defaults.nix: remove useless for cabal2nix on GHC 6.10.4 We cannot build 'tar' on that platform, which is a dependency of cabal2nix. --- pkgs/top-level/haskell-defaults.nix | 1 - 1 file changed, 1 deletion(-) 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 From 83afbf45caa4f6f06556a867b3e48218fb9ea2e1 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sat, 30 Mar 2013 11:52:44 +0100 Subject: [PATCH 62/98] Add xf86videodummy and xf86inputvoid to xorg overrides (pixman fix) --- pkgs/servers/x11/xorg/overrides.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) 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]; From 06425fca373a4091ba1a93ce6513604a8dc3624a Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Fri, 29 Mar 2013 02:30:18 +0100 Subject: [PATCH 63/98] Upgrading xpra to 0.8.8 --- pkgs/tools/X11/xpra/default.nix | 60 +++++++++++++++------------------ pkgs/top-level/all-packages.nix | 4 +-- 2 files changed, 29 insertions(+), 35 deletions(-) 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfb1d8a4e82..7f0ffb9ebbc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8066,9 +8066,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; From 55f14cc7f300bd9e72b903e8a70de0257d803fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 18:10:15 +0100 Subject: [PATCH 64/98] lame: update from 3.98.4 to 3.99.5 --- pkgs/applications/audio/lame/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; From 51229692ca23e4e94697ede1148483e9e6356ece Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 20:00:05 +0100 Subject: [PATCH 65/98] Add sha256 hash to winetricks. Signed-off-by: Moritz Ulrich --- pkgs/misc/emulators/wine/winetricks.nix | 1 + 1 file changed, 1 insertion(+) 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 ]; From c72ac21c55edbe4e7f8fb69a62dd747231e276e0 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sat, 30 Mar 2013 20:04:31 +0100 Subject: [PATCH 66/98] springlobby: bump to 0.169 --- pkgs/games/spring/springlobby.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" From d2cb352ad9888db896976569e5d7d5bc98c0d82d Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 20:09:39 +0100 Subject: [PATCH 67/98] leiningen: Update to 2.1.2 Signed-off-by: Moritz Ulrich --- .../tools/build-managers/leiningen/default.nix | 10 +++++----- .../leiningen/{lein_2.0.0.patch => lein_2.1.2.patch} | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/development/tools/build-managers/leiningen/{lein_2.0.0.patch => lein_2.1.2.patch} (100%) diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix index 35c340ae0f9..f0b45ca680b 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; 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 From 05f2ea2d1253a5c1952805dfb8da94c04c3f6863 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sat, 30 Mar 2013 21:05:15 +0100 Subject: [PATCH 68/98] Add myself (the-kenny) to the maintainer list. Signed-off-by: Moritz Ulrich --- pkgs/development/tools/build-managers/leiningen/default.nix | 1 + pkgs/lib/maintainers.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix index f0b45ca680b..bf1a275046e 100644 --- a/pkgs/development/tools/build-managers/leiningen/default.nix +++ b/pkgs/development/tools/build-managers/leiningen/default.nix @@ -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/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 "; From c7cf2b16908778f7318297e051999d2a2ef79e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:01:05 +0100 Subject: [PATCH 69/98] Adding otpw (a one-time password system) --- pkgs/os-specific/linux/otpw/default.nix | 30 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/os-specific/linux/otpw/default.nix diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix new file mode 100644 index 00000000000..97b601be24c --- /dev/null +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pam }: + +stdenv.mkDerivation { + name = "otpw-1.3"; + + src = fetchurl { + url = ttp://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; + }; + + patchPhase = '' + sed -i 's/^CFLAGS.*/CFLAGS=-O2 -fPIC/' Makefile + ''; + + 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 78e33bd5527..d75c44d4827 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1317,6 +1317,8 @@ let ossec = callPackage ../tools/security/ossec {}; + otpw = callPackage ../os-specific/linux/otpw { }; + p7zip = callPackage ../tools/archivers/p7zip { }; pal = callPackage ../tools/misc/pal { }; From 690d5a346dea4b726a75092b0dd9f725c1c3ad1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:35:32 +0100 Subject: [PATCH 70/98] otpw: fixing typo in url --- pkgs/os-specific/linux/otpw/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix index 97b601be24c..423950be539 100644 --- a/pkgs/os-specific/linux/otpw/default.nix +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "otpw-1.3"; src = fetchurl { - url = ttp://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + url = http://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; sha256 = "1k3hc7xbxz6hkc55kvddi3cibafwf93ivn58sy1l888d3l5dwmrk"; }; From c908d2130fe07c1b0a418513af1ed152a6934c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 20:45:38 +0100 Subject: [PATCH 71/98] Adding 'google-authenticator' --- .../linux/google-authenticator/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/os-specific/linux/google-authenticator/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d75c44d4827..14ab58f03bb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -879,6 +879,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 { }; From 13d40ae54db8cf5f39c350d14e2a6a013a9ec34b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 21:05:29 +0100 Subject: [PATCH 72/98] otpw: fixing the entropy source (PATH variables) I don't know why it set some hardcoded PATH. --- pkgs/os-specific/linux/otpw/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/otpw/default.nix b/pkgs/os-specific/linux/otpw/default.nix index 423950be539..fe5f938b75b 100644 --- a/pkgs/os-specific/linux/otpw/default.nix +++ b/pkgs/os-specific/linux/otpw/default.nix @@ -1,15 +1,17 @@ { stdenv, fetchurl, pam }: -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "otpw-1.3"; src = fetchurl { - url = http://www.cl.cam.ac.uk/~mgk25/download/otpw-1.3.tar.gz; + 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 = '' From fead3aed65a46e5d262d4303965eb2c27908f7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 22:45:45 +0100 Subject: [PATCH 73/98] prayer: update to 1.3.5 --- pkgs/servers/prayer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; From 2ba0d9d3ae9da72620a40d38935201ea3df949a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 30 Mar 2013 18:12:06 +0100 Subject: [PATCH 74/98] fuloong linux: add CGROUPS and disable FTRACE FTRACE was making linux not load at all. And systemd wants cgroups. --- pkgs/top-level/platforms.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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; From 6281042defb4a113f71e6a66dcce7ffc631a9e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 31 Mar 2013 00:07:35 +0100 Subject: [PATCH 75/98] Adding oath-toolkit and xmlsec I added xmlsec to make it work with oath-toolkit (to build one extra tool there, that I don't need), but I couldn't make it work together. --- pkgs/development/libraries/xmlsec/default.nix | 24 +++++++++++++++++++ pkgs/tools/security/oath-toolkit/default.nix | 18 ++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 3 files changed, 46 insertions(+) create mode 100644 pkgs/development/libraries/xmlsec/default.nix create mode 100644 pkgs/tools/security/oath-toolkit/default.nix 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/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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 14ab58f03bb..5e5b2fae184 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1271,6 +1271,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 { }; @@ -5242,6 +5244,8 @@ let jvm = gcj; xerces = xercesJava; }; + xmlsec = callPackage ../development/libraries/xmlsec { }; + zziplib = callPackage ../development/libraries/zziplib { }; From 86e5e52d993ad751d61243c2e8645f6f6950f3aa Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 31 Mar 2013 08:52:20 +0200 Subject: [PATCH 76/98] plone: upgrading to 4.3rc1 --- pkgs/development/web/plone/default.nix | 14922 ++++++++--------------- pkgs/top-level/all-packages.nix | 5 +- 2 files changed, 5239 insertions(+), 9688 deletions(-) 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d9281aba13e..c1d8e39597c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5300,9 +5300,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 { }; From bee99995d99d0706d67a2e0fa41bceba88100b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 31 Mar 2013 09:27:25 +0200 Subject: [PATCH 77/98] linux: update to 3.8.5 --- pkgs/os-specific/linux/kernel/linux-3.8.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; From e657e1b57e8c6f84fc398ce58f3582c188c9465d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 31 Mar 2013 16:16:07 +0200 Subject: [PATCH 78/98] systemd: Update to 200 --- ...aemon-reexec-do-the-right-thing-on-N.patch | 4 +-- ...e-duplicate-paths-in-systemctl-start.patch | 6 ++-- ...ts-for-uninitialised-encrypted-devic.patch | 4 +-- ...o-configuration-hints-for-some-units.patch | 4 +-- ...rop-the-dependency-on-local-fs.targe.patch | 4 +-- .../0006-Don-t-call-plymouth-quit.patch | 4 +-- ...007-Ignore-IPv6-link-local-addresses.patch | 4 +-- ...andle-missing-etc-sysctl.conf-proper.patch | 28 ------------------- pkgs/os-specific/linux/systemd/default.nix | 7 ++--- 9 files changed, 17 insertions(+), 48 deletions(-) delete mode 100644 pkgs/os-specific/linux/systemd/0008-systemd-sysctl-Handle-missing-etc-sysctl.conf-proper.patch 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 From d819ee8b7ee4e35bebc769813e6f8a4fa72145c2 Mon Sep 17 00:00:00 2001 From: Malcolm Matalka Date: Sun, 31 Mar 2013 19:40:11 +0200 Subject: [PATCH 79/98] Add multitail --- pkgs/tools/misc/multitail/default.nix | 22 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/tools/misc/multitail/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1d8e39597c..d046a16fa5a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1054,6 +1054,8 @@ let most = callPackage ../tools/misc/most { }; + multitail = callPackage ../tools/misc/multitail { }; + netperf = callPackage ../applications/networking/netperf { }; ninka = callPackage ../development/tools/misc/ninka { }; From ea4b0c33d8ecf6380caeaec3e94c3dec6371ff23 Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sun, 31 Mar 2013 20:06:13 +0200 Subject: [PATCH 80/98] Set correct paths when using nm-applet without desktop --- .../networking/network-manager-applet/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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"; From e58521d5dce234d7e5d4eb5ae594bcf47de67edd Mon Sep 17 00:00:00 2001 From: Domen Kozar Date: Sun, 31 Mar 2013 20:56:18 +0200 Subject: [PATCH 81/98] anki: set platforms --- pkgs/games/anki/default.nix | 1 + 1 file changed, 1 insertion(+) 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; }; } From 1e071cd3b21f4de86a6a2a3c358e6f980ed5fd8f Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Sun, 31 Mar 2013 22:58:48 +0200 Subject: [PATCH 82/98] Add smartdc, http_signature python packages --- pkgs/top-level/python-packages.nix | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 993dbd3291b..29f2e181f3d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1708,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"; @@ -3890,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"; From 98ba667094f3395cd0e4999693541285ed5e0478 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 1 Apr 2013 01:24:56 +0200 Subject: [PATCH 83/98] adding varnish --- pkgs/servers/varnish/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/servers/varnish/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1d8e39597c..c4afbe4b9e2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1791,6 +1791,8 @@ let uptimed = callPackage ../tools/system/uptimed { }; + varnish = callPackage ../servers/varnish { }; + vlan = callPackage ../tools/networking/vlan { }; wakelan = callPackage ../tools/networking/wakelan { }; From 437419a12485adf2a07e2185bc2845dad31a6099 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:33:21 -0700 Subject: [PATCH 84/98] rawtherapee-4.0.10 . Add a 'float' option to fftw, as this version of rawtherapee requires it. --- pkgs/applications/graphics/rawtherapee/default.nix | 14 +++++++------- pkgs/development/libraries/fftw/default.nix | 3 ++- pkgs/top-level/all-packages.nix | 4 +++- 3 files changed, 12 insertions(+), 9 deletions(-) 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/development/libraries/fftw/default.nix b/pkgs/development/libraries/fftw/default.nix index 6b4fbe7df6c..e096c5fa94f 100644 --- a/pkgs/development/libraries/fftw/default.nix +++ b/pkgs/development/libraries/fftw/default.nix @@ -1,4 +1,4 @@ -{fetchurl, stdenv, builderDefs, stringsWithDeps, singlePrecision ? false, pthreads ? false}: +{fetchurl, stdenv, builderDefs, stringsWithDeps, singlePrecision ? false, pthreads ? false, float ? false}: let version = "3.3.2"; localDefs = builderDefs.passthru.function { @@ -12,6 +12,7 @@ let # some distros seem to be shipping both versions within the same package? # why does --enable-float still result in ..3f.so instead of ..3.so? ++ (if singlePrecision then [ "--enable-single" ] else [ ]) + ++ (if float then [ "--enable-float" ] else [ ]) ++ (stdenv.lib.optional (!pthreads) "--enable-openmp") ++ (stdenv.lib.optional pthreads "--enable-threads") # I think all i686 has sse diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c4afbe4b9e2..c77296bec2a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7676,7 +7676,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 { }; From 4527d677cc1430ff1cfef6e01459d8f2a2873cc3 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:43:53 -0700 Subject: [PATCH 85/98] cuetools metadata: license, maintainer, platforms --- pkgs/tools/cd-dvd/cuetools/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix index fd58e3ea6e2..7de503adc07 100644 --- a/pkgs/tools/cd-dvd/cuetools/default.nix +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -13,7 +13,10 @@ stdenv.mkDerivation { buildInputs = [ automake autoconf flex bison ]; meta = { - description = "cue and toc file parsers and utilities"; + 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 ]; }; } From 4a9c724377cf5ea5fc8dab9af351cc2def02aa1a Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 21:45:40 -0700 Subject: [PATCH 86/98] shntool metadata: license, maintainer, platform --- pkgs/applications/audio/shntool/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix index 68fb8bfb142..476f1a3bd63 100644 --- a/pkgs/applications/audio/shntool/default.nix +++ b/pkgs/applications/audio/shntool/default.nix @@ -14,7 +14,8 @@ stdenv.mkDerivation rec { meta = { description = "multi-purpose WAVE data processing and reporting utility"; homepage = http://www.etree.org/shnutils/shntool/; - license = "GPLv2+"; - platforms = with stdenv.lib.platforms; linux; + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.all + maintainers = with stdenv.lib.maintainers; [ jcumming ]; }; } From 1993c185465c91cb84039a2752394a7895dd66ec Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 31 Mar 2013 22:09:17 -0700 Subject: [PATCH 87/98] missing semicolon. --- pkgs/applications/audio/shntool/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix index 476f1a3bd63..12ef79d746e 100644 --- a/pkgs/applications/audio/shntool/default.nix +++ b/pkgs/applications/audio/shntool/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { 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 + platforms = stdenv.lib.platforms.all; maintainers = with stdenv.lib.maintainers; [ jcumming ]; }; } From 8a8d3993ee1f51064096738864c53be7caa3b7cb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 88/98] haskell-cryptohash: update to version 0.8.4 --- pkgs/development/libraries/haskell/cryptohash/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/cryptohash/default.nix b/pkgs/development/libraries/haskell/cryptohash/default.nix index 521a950e581..77a1ecd9ff4 100644 --- a/pkgs/development/libraries/haskell/cryptohash/default.nix +++ b/pkgs/development/libraries/haskell/cryptohash/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "cryptohash"; - version = "0.8.3"; - sha256 = "1fcqbbclii2hmbhi7h64v0nnbc34zzs107m3lqq38iiyy5fvqqv2"; + version = "0.8.4"; + sha256 = "0h58apxcrvpkyj3s2c7l68g7biv80snkn53g6jya1s687xff8fmn"; buildDepends = [ cereal cryptoApi tagged ]; testDepends = [ HUnit QuickCheck testFramework testFrameworkHunit From 561c830920ebcb13527186cd7e2e15eb13505e06 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 89/98] haskell-hspec-meta: update to version 1.5.1 --- .../libraries/haskell/hspec-meta/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec-meta/default.nix b/pkgs/development/libraries/haskell/hspec-meta/default.nix index 85547842dc8..261e9577bbb 100644 --- a/pkgs/development/libraries/haskell/hspec-meta/default.nix +++ b/pkgs/development/libraries/haskell/hspec-meta/default.nix @@ -1,16 +1,16 @@ { cabal, ansiTerminal, filepath, hspecExpectations, HUnit -, QuickCheck, setenv, silently, time, transformers +, QuickCheck, quickcheckIo, setenv, time, transformers }: cabal.mkDerivation (self: { pname = "hspec-meta"; - version = "1.4.5"; - sha256 = "0k50vwzg3ka4727bj63y4gsvw4g80gnalj31rsbvj3afl9gikkk7"; + version = "1.5.1"; + sha256 = "1js62n2mxv4mj4w89ymz5cn3d2qznjndzk3c78gmy6chvig23zlf"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv - silently time transformers + ansiTerminal filepath hspecExpectations HUnit QuickCheck + quickcheckIo setenv time transformers ]; doCheck = false; meta = { From 5e5b50c8174b0c72d3bbd356ba78d020e59c7019 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 90/98] haskell-hspec: update to version 1.5.1 --- .../libraries/haskell/hspec/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/haskell/hspec/default.nix b/pkgs/development/libraries/haskell/hspec/default.nix index 4856c1eb72a..2fde2e8d9cf 100644 --- a/pkgs/development/libraries/haskell/hspec/default.nix +++ b/pkgs/development/libraries/haskell/hspec/default.nix @@ -1,21 +1,21 @@ { cabal, ansiTerminal, doctest, filepath, ghcPaths -, hspecExpectations, hspecMeta, HUnit, QuickCheck, setenv, silently -, time, transformers +, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo +, setenv, silently, time, transformers }: cabal.mkDerivation (self: { pname = "hspec"; - version = "1.4.5"; - sha256 = "1dfwc1gjsawafi6k19hsw4kd5ahp8a9hdkyrm7nhjp4kjzgd2ymf"; + version = "1.5.1"; + sha256 = "0iz34hgwir07g2qv3zdkg5k5wrv68qd0c77xkpfcs653fi28i91a"; isLibrary = true; isExecutable = true; buildDepends = [ - ansiTerminal filepath hspecExpectations HUnit QuickCheck setenv - silently time transformers + ansiTerminal filepath hspecExpectations HUnit QuickCheck + quickcheckIo setenv time transformers ]; testDepends = [ ansiTerminal doctest filepath ghcPaths hspecExpectations hspecMeta - HUnit QuickCheck setenv silently time transformers + HUnit QuickCheck quickcheckIo setenv silently time transformers ]; meta = { homepage = "http://hspec.github.com/"; From 5529ad42d2aa6a37cb3b36d36af1657de3fdd790 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 91/98] haskell-liblastfm: update to version 0.1.1.2 --- pkgs/development/libraries/haskell/liblastfm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/liblastfm/default.nix b/pkgs/development/libraries/haskell/liblastfm/default.nix index 096a39b9a3b..0ecf0e37ca2 100644 --- a/pkgs/development/libraries/haskell/liblastfm/default.nix +++ b/pkgs/development/libraries/haskell/liblastfm/default.nix @@ -5,8 +5,8 @@ cabal.mkDerivation (self: { pname = "liblastfm"; - version = "0.1.1.1"; - sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv"; + version = "0.1.1.2"; + sha256 = "1zckgjc0r2s1s6s9s309dr2ri8bzj1fi8gcbhm3hifczq1v149w9"; buildDepends = [ aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text ]; From 8692618980c94395f52a93d3943513debb794bb0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 92/98] haskell-multiarg: update to version 0.12.0.2 --- pkgs/development/libraries/haskell/multiarg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/multiarg/default.nix b/pkgs/development/libraries/haskell/multiarg/default.nix index c8a7b479c54..72936e1873c 100644 --- a/pkgs/development/libraries/haskell/multiarg/default.nix +++ b/pkgs/development/libraries/haskell/multiarg/default.nix @@ -2,8 +2,8 @@ cabal.mkDerivation (self: { pname = "multiarg"; - version = "0.12.0.0"; - sha256 = "1v2bfqbjk4wxn5dzd7asqcfidlr9bmwc5yy7awp86ch669kjnbzd"; + version = "0.12.0.2"; + sha256 = "0f90dsa5ya55lrc0x0ziz01fjvaq85q4f8zsfci1w1rgxa9m7naa"; buildDepends = [ explicitException utf8String ]; meta = { homepage = "https://github.com/massysett/multiarg"; From 78af53bb05e5d653fcdbe13a705c645882116739 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:00:40 +0200 Subject: [PATCH 93/98] haskell-shake: update to version 0.10.2 --- pkgs/development/libraries/haskell/shake/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/shake/default.nix b/pkgs/development/libraries/haskell/shake/default.nix index f3a23533865..e2b46cfcbc5 100644 --- a/pkgs/development/libraries/haskell/shake/default.nix +++ b/pkgs/development/libraries/haskell/shake/default.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "shake"; - version = "0.10.1"; - sha256 = "0k8hk5aw5xk4aq7g8yjlkn1rjhcdy3jd5mna9phjs23kmfsmayk6"; + version = "0.10.2"; + sha256 = "0045dz46iacrihqlsdg00zmnkrma5swnmy2bp4h91fx0829lki9n"; isLibrary = true; isExecutable = true; buildDepends = [ From d95c79bad713cda3fa24dd71fcb40e639d8f12e4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:15:46 +0200 Subject: [PATCH 94/98] bind: update to version 9.9.2-P2 to fix CVE 2010-4051 /2010-4052 --- pkgs/servers/dns/bind/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 54fa398a8e9..1d9192a1c61 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,10 @@ 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]; + + maintainers = with stdenv.lib.maintainers; [viric simons]; platforms = with stdenv.lib.platforms; linux; }; } From e655ac24d20e44664745f777c833ff55c01e7438 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:18:44 +0200 Subject: [PATCH 95/98] bind: add meta.license attribute --- pkgs/servers/dns/bind/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 1d9192a1c61..d9a9b6b2432 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.isc.org/software/bind"; description = "ISC BIND: a domain name server"; + license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [viric simons]; platforms = with stdenv.lib.platforms; linux; From 3c28408f84e762008db426ec9f6a5f0bc47b18a1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:34:20 +0200 Subject: [PATCH 96/98] haskell-quickcheck-io: add version 0.1.0 --- .../libraries/haskell/quickcheck-io/default.nix | 13 +++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/development/libraries/haskell/quickcheck-io/default.nix diff --git a/pkgs/development/libraries/haskell/quickcheck-io/default.nix b/pkgs/development/libraries/haskell/quickcheck-io/default.nix new file mode 100644 index 00000000000..b7c33b6d1a0 --- /dev/null +++ b/pkgs/development/libraries/haskell/quickcheck-io/default.nix @@ -0,0 +1,13 @@ +{ cabal, HUnit, QuickCheck }: + +cabal.mkDerivation (self: { + pname = "quickcheck-io"; + version = "0.1.0"; + sha256 = "167ds7c7p1lcfsylxhq2sr0jxbviyim1n42dhyr0s0b6hazw8cjs"; + buildDepends = [ HUnit QuickCheck ]; + meta = { + description = "Use HUnit assertions as QuickCheck properties"; + license = self.stdenv.lib.licenses.mit; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 9b3c33c4198..5a96e995c73 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1514,6 +1514,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 {}; From 00346f1bbb6dab60fb7f8b6147a5f2edfa28b96c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 10:34:50 +0200 Subject: [PATCH 97/98] haskell-hspec-expectations: switch default to version 0.3.2 --- pkgs/top-level/haskell-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 5a96e995c73..4534adee337 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1113,7 +1113,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; - hspecExpectations = self.hspecExpectations_0_3_0_3; + hspecExpectations = self.hspecExpectations_0_3_2; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {}; From a83f32b335d312c69923af45be8c0997e996d4d5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Apr 2013 11:29:20 +0200 Subject: [PATCH 98/98] haskell-hspec-expectations: drop obsolete version 0.3.0.3 --- .../haskell/hspec-expectations/0.3.0.3.nix | 17 ----------------- .../{0.3.2.nix => default.nix} | 0 pkgs/top-level/haskell-packages.nix | 4 +--- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix rename pkgs/development/libraries/haskell/hspec-expectations/{0.3.2.nix => default.nix} (100%) diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix b/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix deleted file mode 100644 index 41019c9caa3..00000000000 --- a/pkgs/development/libraries/haskell/hspec-expectations/0.3.0.3.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ cabal, hspec, HUnit, markdownUnlit, silently }: - -cabal.mkDerivation (self: { - pname = "hspec-expectations"; - version = "0.3.0.3"; - sha256 = "1ppcbfmcgrd1lwswa293fxwny6khhg4blygfbcsawrvgc5ji0q74"; - buildDepends = [ HUnit ]; - testDepends = [ hspec HUnit markdownUnlit silently ]; - doCheck = false; - meta = { - homepage = "https://github.com/sol/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = self.stdenv.lib.licenses.mit; - platforms = self.ghc.meta.platforms; - maintainers = [ self.stdenv.lib.maintainers.simons ]; - }; -}) diff --git a/pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix b/pkgs/development/libraries/haskell/hspec-expectations/default.nix similarity index 100% rename from pkgs/development/libraries/haskell/hspec-expectations/0.3.2.nix rename to pkgs/development/libraries/haskell/hspec-expectations/default.nix diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 4534adee337..610f26d5541 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1111,9 +1111,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); hspec = callPackage ../development/libraries/haskell/hspec {}; - hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {}; - hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {}; - hspecExpectations = self.hspecExpectations_0_3_2; + hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {}; hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {};