5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
setuptools-scm,
|
|
numpy,
|
|
cython,
|
|
extension-helpers,
|
|
hankel,
|
|
emcee,
|
|
meshio,
|
|
pyevtk,
|
|
scipy,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gstools";
|
|
version = "1.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GeoStat-Framework";
|
|
repo = "GSTools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-QpdOARzcSRVFl/DbnE2JLBFZmTSh/fBOmzweuf+zfEs=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
numpy
|
|
cython
|
|
extension-helpers
|
|
];
|
|
|
|
dependencies = [
|
|
emcee
|
|
hankel
|
|
meshio
|
|
numpy
|
|
pyevtk
|
|
scipy
|
|
];
|
|
|
|
# scipy derivation dont support numpy_2 and is patched to use version 1
|
|
# Using numpy_2 in the derivation will cause a clojure duplicate error
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail 'numpy>=2.0.0rc1,' 'numpy' \
|
|
'';
|
|
|
|
pythonImportsCheck = [ "gstools" ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = {
|
|
description = "Geostatistical toolbox";
|
|
homepage = "https://github.com/GeoStat-Framework/GSTools";
|
|
changelog = "https://github.com/GeoStat-Framework/GSTools/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
};
|
|
}
|