python3.pkgs.geoarrow-c: init at 0.1.3

This commit is contained in:
Phillip Cloud 2024-10-17 08:57:19 -04:00
parent 5f6dd3654c
commit 0f949a0bff
No known key found for this signature in database
GPG Key ID: D908212070FD785E
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,53 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
pyarrow,
cython,
numpy,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "geoarrow-c";
version = "0.1.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
repo = "geoarrow-c";
owner = "geoarrow";
rev = "refs/tags/geoarrow-c-python-${version}";
hash = "sha256-kQCD3Vptl7GtRFigr4darvdtwnaHRLZWvBBpZ0xHMgM=";
};
sourceRoot = "${src.name}/python/geoarrow-c";
build-system = [
cython
setuptools
setuptools-scm
];
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeCheckInputs = [
pytestCheckHook
pyarrow
numpy
];
pythonImportsCheck = [ "geoarrow.c" ];
meta = with lib; {
description = "Experimental C and C++ implementation of the GeoArrow specification";
homepage = "https://github.com/geoarrow/geoarrow-c";
license = licenses.asl20;
maintainers = with maintainers; [
cpcloud
];
};
}

View File

@ -4964,6 +4964,8 @@ self: super: with self; {
geoalchemy2 = callPackage ../development/python-modules/geoalchemy2 { };
geoarrow-c = callPackage ../development/python-modules/geoarrow-c { };
geoarrow-types = callPackage ../development/python-modules/geoarrow-types { };
geocachingapi = callPackage ../development/python-modules/geocachingapi { };