1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.geoalchemy2: init at 0.3.0.dev1

This commit is contained in:
Lancelot SIX 2016-03-08 14:18:37 +01:00
parent 04573b82bc
commit 8522f816c6

View file

@ -18413,6 +18413,24 @@ in modules // {
};
};
geoalchemy2 = buildPythonPackage rec {
name = "GeoAlchemy2-${version}";
version = "0.3.0.dev1";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/G/GeoAlchemy2/${name}.tar.gz";
sha256 = "1j95p860ikpcpcirs5791yjpy8rf18zsz7vvsdy6v3x32hkim0k6";
};
propagatedBuildInputs = with self ; [ sqlalchemy shapely ];
meta = {
homepage = http://geoalchemy.org/;
license = licenses.mit;
description = "Toolkit for working with spatial databases";
};
};
geopy = buildPythonPackage rec {
name = "geopy-${version}";
version = "1.11.0";