forked from mirrors/nixpkgs
e9eb32649e
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
(cherry picked from commit 0ad2111ce0
)
26 lines
482 B
Nix
26 lines
482 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sqlalchemy
|
|
, shapely
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "GeoAlchemy2";
|
|
version = "0.6.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0bzm9zgz2gfy6smlvdgxnf6y14rfhr4vj3mjfwlxdx2vcfc95hqa";
|
|
};
|
|
|
|
propagatedBuildInputs = [ sqlalchemy shapely ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://geoalchemy.org/;
|
|
license = licenses.mit;
|
|
description = "Toolkit for working with spatial databases";
|
|
};
|
|
|
|
}
|