Merge pull request #11551 from hrdinka/add/tilestache
python tilestache: init at 1.50.1
This commit is contained in:
commit
3b020106f8
|
@ -17019,6 +17019,27 @@ in modules // {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tilestache = self.buildPythonPackage rec {
|
||||||
|
name = "tilestache-${version}";
|
||||||
|
version = "1.50.1";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/T/TileStache/TileStache-${version}.tar.gz";
|
||||||
|
sha256 = "1z1j35pz77lhhjdn69sq5rmz62b5m444507d8zjnp0in5xqaj6rj";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = !isPy27;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self;
|
||||||
|
[ modestmaps pillow pycairo python-mapnik simplejson werkzeug ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A tile server for rendered geographic data";
|
||||||
|
homepage = http://tilestache.org;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
timelib = buildPythonPackage rec {
|
timelib = buildPythonPackage rec {
|
||||||
name = "timelib-0.2.4";
|
name = "timelib-0.2.4";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue