summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope/default.nix
blob: c01945bf472b54e2ca3fced84fc90a91cca48673 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, python}:

stdenv.mkDerivation rec {
  version = "3.4.0";
  name = "zope-${version}";
  src = fetchurl {
    url = "http://www.zope.org/Products/Zope3/${version}/Zope-${version}.tgz";
    sha256 = "3e834e8749945d8fc0a67bb724f2cf0c671f04f477e24fb8edb74828e331901d";
  };
  patches = [
    ./zope_python-2.4.4.patch
    ./zope_python-readline.patch
  ];
  buildInputs = [python];
}