Loïc Reynier 126b37d7a3
python3Packages.dmsuite: init at 0.3.0
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2025-07-24 22:38:05 +02:00

55 lines
1.1 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
numpy,
pythonOlder,
pytestCheckHook,
setuptools,
setuptools-scm,
scipy,
}:
buildPythonPackage rec {
pname = "dmsuite";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-IqLsHkGNgPz2yZm0QMyMMo6Mr2RsU2DPGxYpoNwC3fs=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
numpy
scipy
];
nativeCheckInputs = [
pytestCheckHook
];
# Slight precision error probably due to different BLAS backend on Darwin
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
"test_cheb_scaled"
];
pythonImportsCheck = [ "dmsuite" ];
meta = {
description = "Scientific library providing a collection of spectral collocation differentiation matrices";
homepage = "https://github.com/labrosse/dmsuite";
changelog = "https://github.com/labrosse/dmsuite/releases/tag/v${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ loicreynier ];
};
}