pythonPackages.geoalchemy2: fix build

This commit is contained in:
Edmund Wu 2020-06-23 15:54:13 -04:00
parent 12b0644a20
commit ba09be4c69
No known key found for this signature in database
GPG Key ID: F44F23D596B4F71D

View File

@ -3,6 +3,8 @@
, fetchPypi
, sqlalchemy
, shapely
, setuptools_scm
, pytest
}:
buildPythonPackage rec {
@ -14,8 +16,12 @@ buildPythonPackage rec {
sha256 = "a5a2444d90ce7f2c6b2d7bd7346c8aed16fd32c3e190e631576a51814e8f7ee9";
};
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ sqlalchemy shapely ];
# https://github.com/geoalchemy/geoalchemy2/blob/e05a676350b11f0e73609379dae5625c5de2e868/TEST.rst
doCheck = false;
meta = with stdenv.lib; {
homepage = "http://geoalchemy.org/";
license = licenses.mit;