Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 25 lines 494 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, sqlalchemy 5, shapely 6}: 7 8buildPythonPackage rec { 9 pname = "GeoAlchemy2"; 10 version = "0.5.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "7d66d01af82d22bc37d3ebb1e73713b87ac5e116b3bc82ea4ec0584bbaa89f89"; 15 }; 16 17 propagatedBuildInputs = [ sqlalchemy shapely ]; 18 19 meta = with stdenv.lib; { 20 homepage = http://geoalchemy.org/; 21 license = licenses.mit; 22 description = "Toolkit for working with spatial databases"; 23 }; 24 25}