Commit 2cc5727a authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

gython3Packages.tilestache: drop

tilestache is supposedly Python3 compatible but
was marked as disabled for everything except Python27.
Because of this, I'd rather move to remove it, and the package may be
readded should interest renew itself.
parent e3b68322
Loading
Loading
Loading
Loading
+0 −40
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  modestmaps,
  pillow,
  pycairo,
  python-mapnik,
  simplejson,
  werkzeug,
  isPy27,
}:

buildPythonPackage rec {
  pname = "tilestache";
  version = "1.51.14";
  format = "setuptools";
  disabled = !isPy27;

  src = fetchPypi {
    pname = "TileStache";
    inherit version;
    sha256 = "1qjrabl6qr7i6yj6v647ck92abcyklb0vmb6h6kj7x8v2cj5xbvk";
  };

  propagatedBuildInputs = [
    modestmaps
    pillow
    pycairo
    python-mapnik
    simplejson
    werkzeug
  ];

  meta = with lib; {
    description = "Tile server for rendered geographic data";
    homepage = "http://tilestache.org";
    license = licenses.bsd3;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -710,6 +710,7 @@ mapAliases ({
  tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25
  tensorflow-tensorboard = tensorboard; # added 2022-03-06
  tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
  tilestache = throw "tilestache is unmaintained and Python3 compatibility is unknown"; # Added 2025-03-23
  Theano = theano; # added 2023-02-19
  TheanoWithCuda = theanoWithCuda; # added 2023-02-19
  TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19
+0 −2
Original line number Diff line number Diff line
@@ -16666,8 +16666,6 @@ self: super: with self; {
  tiler = callPackage ../development/python-modules/tiler { };
  tilestache = callPackage ../development/python-modules/tilestache { };
  tilt-ble = callPackage ../development/python-modules/tilt-ble { };
  timeago = callPackage ../development/python-modules/timeago { };