Nick Cao 2024-04-23 10:43:54 -04:00
parent b357ff81bc
commit 038265e4bd
No known key found for this signature in database
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 ];
};