Merge pull request #11551 from hrdinka/add/tilestache

python tilestache: init at 1.50.1
This commit is contained in:
Domen Kožar 2015-12-08 13:58:08 +01:00
commit 3b020106f8

View File

@ -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 {
name = "timelib-0.2.4";