f22dfeb1cf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-geoalchemy2/versions
26 lines
482 B
Nix
26 lines
482 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sqlalchemy
|
|
, shapely
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "GeoAlchemy2";
|
|
version = "0.6.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1viq85fsb119w4lmxn2iacxf2w35b8cgzamlrb685z50pp1cdi2d";
|
|
};
|
|
|
|
propagatedBuildInputs = [ sqlalchemy shapely ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://geoalchemy.org/;
|
|
license = licenses.mit;
|
|
description = "Toolkit for working with spatial databases";
|
|
};
|
|
|
|
}
|