Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 modestmaps, 6 pillow, 7 pycairo, 8 python-mapnik, 9 simplejson, 10 werkzeug, 11 isPy27, 12}: 13 14buildPythonPackage rec { 15 pname = "tilestache"; 16 version = "1.51.14"; 17 format = "setuptools"; 18 disabled = !isPy27; 19 20 src = fetchPypi { 21 pname = "TileStache"; 22 inherit version; 23 sha256 = "1qjrabl6qr7i6yj6v647ck92abcyklb0vmb6h6kj7x8v2cj5xbvk"; 24 }; 25 26 propagatedBuildInputs = [ 27 modestmaps 28 pillow 29 pycairo 30 python-mapnik 31 simplejson 32 werkzeug 33 ]; 34 35 meta = with lib; { 36 description = "Tile server for rendered geographic data"; 37 homepage = "http://tilestache.org"; 38 license = licenses.bsd3; 39 }; 40}