Merge pull request #306302 from NickCao/geoalchemy2

python311Packages.geoalchemy2: 0.14.7 -> 0.15.0
This commit is contained in:
Nick Cao 2024-04-25 09:25:32 -04:00 committed by GitHub
commit 08c32cca92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "geoalchemy2";
version = "0.14.7";
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -22,15 +22,15 @@ buildPythonPackage rec {
owner = "geoalchemy";
repo = "geoalchemy2";
rev = "refs/tags/${version}";
hash = "sha256-QYYYSYApU5WNqnRObhK6zTGVz2HtTQSMGIBwz3z9szQ=";
hash = "sha256-cQixNLtjHPQrnNcxg0MrIdzvun2f1BqKY/2SxfcM2Nc=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
sqlalchemy
packaging
];
@ -38,7 +38,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
alembic
pytestCheckHook
] ++ passthru.optional-dependencies.shapely;
] ++ optional-dependencies.shapely;
disabledTestPaths = [
# tests require live databases
@ -60,7 +60,7 @@ buildPythonPackage rec {
"geoalchemy2"
];
passthru.optional-dependencies = {
optional-dependencies = {
shapely = [ shapely ];
};