mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
pythonPackages.geoalchemy2: fix build
This commit is contained in:
parent
12b0644a20
commit
ba09be4c69
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user