4suite: remove dead package

Project abandoned in 2006. Broken since June 2014.

-22
-18
pkgs/development/python-modules/4suite/default.nix
··· 1 - {stdenv, fetchurl, python}: 2 - 3 - stdenv.mkDerivation rec { 4 - version = "1.0.2"; 5 - name = "4suite-${version}"; 6 - src = fetchurl { 7 - url = "mirror://sourceforge/foursuite/4Suite-XML-${version}.tar.bz2"; 8 - sha256 = "0g5cyqxhhiqnvqk457k8sb97r18pwgx6gff18q5296xd3zf4cias"; 9 - }; 10 - buildInputs = [python]; 11 - buildPhase = "true"; 12 - installPhase = "python ./setup.py install --prefix=$out"; 13 - 14 - # None of the tools installed to bin/ work. They all throw an exception 15 - # similar to this: 16 - # ImportError: No module named Ft.Xml.XPath._4xpath 17 - meta.broken = true; 18 - }
-2
pkgs/top-level/all-packages.nix
··· 9022 9022 self = pypyPackages; 9023 9023 }); 9024 9024 9025 - foursuite = pythonPackages.foursuite; 9026 - 9027 9025 bsddb3 = pythonPackages.bsddb3; 9028 9026 9029 9027 ecdsa = pythonPackages.ecdsa;
-2
pkgs/top-level/python-packages.nix
··· 8558 8558 }; 8559 8559 }); 8560 8560 8561 - foursuite = callPackage ../development/python-modules/4suite {}; 8562 - 8563 8561 fs = buildPythonPackage rec { 8564 8562 name = "fs-0.5.0"; 8565 8563