e8e68cff3c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-tilestache/versions
33 lines
623 B
Nix
33 lines
623 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, modestmaps
|
|
, pillow
|
|
, pycairo
|
|
, python-mapnik
|
|
, simplejson
|
|
, werkzeug
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tilestache";
|
|
version = "1.51.14";
|
|
disabled = !isPy27;
|
|
|
|
src = fetchPypi {
|
|
pname = "TileStache";
|
|
inherit version;
|
|
sha256 = "1qjrabl6qr7i6yj6v647ck92abcyklb0vmb6h6kj7x8v2cj5xbvk";
|
|
};
|
|
|
|
propagatedBuildInputs = [ modestmaps pillow pycairo python-mapnik simplejson werkzeug ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tile server for rendered geographic data";
|
|
homepage = http://tilestache.org;
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|