geoarrow-c: 0.1.3 -> 0.3.1 (#447186)
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "geoarrow-c";
|
pname = "geoarrow-c";
|
||||||
version = "0.1.3";
|
version = "0.3.1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@@ -21,17 +21,29 @@ buildPythonPackage rec {
|
|||||||
repo = "geoarrow-c";
|
repo = "geoarrow-c";
|
||||||
owner = "geoarrow";
|
owner = "geoarrow";
|
||||||
tag = "geoarrow-c-python-${version}";
|
tag = "geoarrow-c-python-${version}";
|
||||||
hash = "sha256-kQCD3Vptl7GtRFigr4darvdtwnaHRLZWvBBpZ0xHMgM=";
|
hash = "sha256-cSvFCIMHuwDh83DT3R3V86S+RjPzhqcnTaFXqKL43Ns=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "${src.name}/python/geoarrow-c";
|
sourceRoot = "${src.name}/python/geoarrow-c";
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export CFLAGS="-I../../src/src/geoarrow"
|
||||||
|
'';
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
cython
|
cython
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-scm
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# upstream needs a bootstrap.py file to copy some source around to build the project.
|
||||||
|
# This file is executed by setup.py, so at build time, when sources are readonly!
|
||||||
|
# So we execute this file at patch time instead, and remove it to prevent setup.py to execute it again.
|
||||||
|
postPatch = ''
|
||||||
|
python ./bootstrap.py
|
||||||
|
rm -v ./bootstrap.py
|
||||||
|
'';
|
||||||
|
|
||||||
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
pandas,
|
pandas,
|
||||||
pyarrow,
|
pyarrow,
|
||||||
geoarrow-pyarrow,
|
geoarrow-pyarrow,
|
||||||
|
geoarrow-types,
|
||||||
setuptools-scm,
|
setuptools-scm,
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@@ -31,6 +32,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
geoarrow-pyarrow
|
geoarrow-pyarrow
|
||||||
|
geoarrow-types
|
||||||
pandas
|
pandas
|
||||||
pyarrow
|
pyarrow
|
||||||
];
|
];
|
||||||
@@ -49,5 +51,9 @@ buildPythonPackage rec {
|
|||||||
cpcloud
|
cpcloud
|
||||||
];
|
];
|
||||||
teams = [ lib.teams.geospatial ];
|
teams = [ lib.teams.geospatial ];
|
||||||
|
# its removal upstream is in question
|
||||||
|
# https://github.com/geoarrow/geoarrow-python/issues/75
|
||||||
|
# please unbreak it if the author decides to release a new version
|
||||||
|
broken = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
pyarrow-hotfix,
|
pyarrow-hotfix,
|
||||||
numpy,
|
numpy,
|
||||||
pandas,
|
pandas,
|
||||||
|
geoarrow-types,
|
||||||
geopandas,
|
geopandas,
|
||||||
pyogrio,
|
pyogrio,
|
||||||
pyproj,
|
pyproj,
|
||||||
@@ -16,7 +17,7 @@
|
|||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "geoarrow-pyarrow";
|
pname = "geoarrow-pyarrow";
|
||||||
version = "0.1.2";
|
version = "0.2.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@@ -25,7 +26,7 @@ buildPythonPackage rec {
|
|||||||
repo = "geoarrow-python";
|
repo = "geoarrow-python";
|
||||||
owner = "geoarrow";
|
owner = "geoarrow";
|
||||||
tag = "geoarrow-pyarrow-${version}";
|
tag = "geoarrow-pyarrow-${version}";
|
||||||
hash = "sha256-Ni+GKTRhRDRHip1us3OZPuUhHQCNU7Nap865T/+CU8Y=";
|
hash = "sha256-tgeWrVpGIyRqRGk1y9OdS/eYMJjt80sXHt6VCx8RWys=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "${src.name}/geoarrow-pyarrow";
|
sourceRoot = "${src.name}/geoarrow-pyarrow";
|
||||||
@@ -57,6 +58,10 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
geoarrow-types
|
||||||
numpy
|
numpy
|
||||||
pandas
|
pandas
|
||||||
geopandas
|
geopandas
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "geoarrow-types";
|
pname = "geoarrow-types";
|
||||||
version = "0.2.0";
|
version = "0.3.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
repo = "geoarrow-python";
|
repo = "geoarrow-python";
|
||||||
owner = "geoarrow";
|
owner = "geoarrow";
|
||||||
tag = "geoarrow-types-${version}";
|
tag = "geoarrow-types-${version}";
|
||||||
hash = "sha256-LySb4AsRuSirDJ73MAPpnMwPM2WFfG6X82areR4Y4lI=";
|
hash = "sha256-ciElwh94ukFyFdOBuQWyOUVpn4jBM1RKfxiBCcM+nmE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "${src.name}/geoarrow-types";
|
sourceRoot = "${src.name}/geoarrow-types";
|
||||||
@@ -29,6 +29,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
pyarrow
|
pyarrow
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user