Commit e3b68322 authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.modestmaps: drop

modestmaps was never enabled for anything except Python27. As of 1.4.7,
Python3 support has been added, but I doubt any there is any active
interest in this package currently. It may be readded should interest
renew itself.
parent 9d77d960
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pillow,
  isPy27,
}:

buildPythonPackage rec {
  pname = "modestmaps";
  version = "1.4.7";
  disabled = !isPy27;

  src = fetchPypi {
    pname = "ModestMaps";
    inherit version;
    sha256 = "698442a170f02923f8ea55f18526b56c17178162e44304f896a8a5fd65ab4457";
  };

  propagatedBuildInputs = [ pillow ];

  meta = with lib; {
    description = "Library for building interactive maps";
    homepage = "http://modestmaps.com";
    license = licenses.bsd3;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -390,6 +390,7 @@ mapAliases ({
  mitmproxy-wireguard = throw "mitmproxy-wireguard has been removed because it was replaced by upstream with mitmproxy-rs"; # added 2023-11-06
  mkdocs-awesome-pages-plugin = mkdocs-awesome-nav; # added 2025-03-10
  mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28
  modestmaps = throw "modestmaps is unmaintained and was never enabled for anything except Python27"; # Added 2025-03-23
  mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
  mox3 = throw "mox3 was removed because it is unmaintained"; # added 2024-08-30
  mrkd = throw "mrkd has been promoted to a top-level attribute name: `pkgs.mrkd`"; # added 2023-08-01
+0 −2
Original line number Diff line number Diff line
@@ -8632,8 +8632,6 @@ self: super: with self; {
  moderngl-window = callPackage ../development/python-modules/moderngl-window { };
  modestmaps = callPackage ../development/python-modules/modestmaps { };
  mohawk = callPackage ../development/python-modules/mohawk { };
  molbar = callPackage ../development/python-modules/molbar { };