pythonpackages.taskcoach: Remove outdated package, far behind upstream

-30
-30
pkgs/top-level/python-packages.nix
··· 20169 20169 }; 20170 20170 }; 20171 20171 20172 - taskcoach = buildPythonPackage rec { 20173 - name = "TaskCoach-1.3.22"; 20174 - disabled = isPy3k; 20175 - 20176 - src = pkgs.fetchurl { 20177 - url = "mirror://sourceforge/taskcoach/${name}.tar.gz"; 20178 - sha256 = "1ddx56bqmh347synhgjq625ijv5hqflr0apxg0nl4jqdsqk1zmxh"; 20179 - }; 20180 - 20181 - propagatedBuildInputs = with self; [ wxPython ]; 20182 - 20183 - # I don't know why I need to add these libraries. Shouldn't they 20184 - # be part of wxPython? 20185 - postInstall = '' 20186 - libspaths=${with pkgs.xorg; pkgs.lib.makeLibraryPath [ libSM libXScrnSaver ]} 20187 - wrapProgram $out/bin/taskcoach.py \ 20188 - --prefix LD_LIBRARY_PATH : $libspaths 20189 - ''; 20190 - 20191 - # error: invalid command 'test' 20192 - doCheck = false; 20193 - 20194 - meta = { 20195 - homepage = http://taskcoach.org/; 20196 - description = "Todo manager to keep track of personal tasks and todo lists"; 20197 - license = licenses.gpl3Plus; 20198 - broken = stdenv.isDarwin; 20199 - }; 20200 - }; 20201 - 20202 20172 taskw = buildPythonPackage rec { 20203 20173 version = "1.0.3"; 20204 20174 name = "taskw-${version}";