python3Packages.gstools-cython: init at 1.1.0

This commit is contained in:
Sarah Clark
2025-07-23 10:23:03 -07:00
parent a2528bba9f
commit 21bdd3714f
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
extension-helpers,
numpy,
setuptools,
setuptools-scm,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "gstools-cython";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "GeoStat-Framework";
repo = "GSTools-Cython";
tag = "v${version}";
hash = "sha256-Kzn/ThLjTGy3ZYIkTwCV1wi22c7rWo4u/L3llppC6wQ=";
};
build-system = [
cython
extension-helpers
numpy
setuptools
setuptools-scm
];
dependencies = [
numpy
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [
"gstools_cython"
];
meta = {
description = "Cython backend for GSTools";
homepage = "https://github.com/GeoStat-Framework/GSTools-Cython";
changelog = "https://github.com/GeoStat-Framework/GSTools-Cython/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ sarahec ];
};
}
+2
View File
@@ -6294,6 +6294,8 @@ self: super: with self; {
gstools = callPackage ../development/python-modules/gstools { };
gstools-cython = callPackage ../development/python-modules/gstools-cython { };
gtfs-realtime-bindings = callPackage ../development/python-modules/gtfs-realtime-bindings { };
gto = callPackage ../development/python-modules/gto { };