Files
nixpkgs/pkgs/development/python-modules/gstools-cython/default.nix

60 lines
1.1 KiB
Nix

{
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=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "Cython>=3.0.10,<3.1.0" "Cython>=3.1.0,<4.0.0"
'';
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 ];
};
}