Commit 76fba3ef authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.pychart: drop

The package was never enabled for anything except Python27, the
latest Pypi release is from 2009, and the homepage linked there has
disappeared.
parent a4df9193
Loading
Loading
Loading
Loading
+0 −25
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy27,
}:

buildPythonPackage rec {
  pname = "pychart";
  version = "1.39";
  format = "setuptools";

  disabled = !isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
  };

  meta = with lib; {
    description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
    homepage = "https://pypi.python.org/pypi/PyChart";
    license = licenses.gpl2;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -492,6 +492,7 @@ mapAliases ({
  pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
  pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23
  pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
  pychart = throw "pychart does not support Python3"; # added 2025-03-23
  pycontracts = throw "pycontracts has been removed, since upstream is no longer active and it is broken on modern Python versions."; # added 2024-08-09
  pydns = py3dns; # added 2024-10-25
  pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
+0 −2
Original line number Diff line number Diff line
@@ -11816,8 +11816,6 @@ self: super: with self; {
  pychannels = callPackage ../development/python-modules/pychannels { };
  pychart = callPackage ../development/python-modules/pychart { };
  pychm = callPackage ../development/python-modules/pychm { };
  pychromecast = callPackage ../development/python-modules/pychromecast { };