19432ddf3e
Diff: https://github.com/firedrakeproject/fiat/compare/2025.10.1...2026.4.0 Changelog: https://github.com/firedrakeproject/fiat/releases/tag/2026.4.0
85 lines
1.6 KiB
Nix
85 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
numpy,
|
|
scipy,
|
|
sympy,
|
|
recursivenodes,
|
|
symengine,
|
|
firedrake-ufl,
|
|
pytestCheckHook,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "firedrake-fiat";
|
|
version = "2026.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firedrakeproject";
|
|
repo = "fiat";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-aO4iFDwt9l5+s+96kjxja92OWnJb64OBpYXu6oxk51c=";
|
|
};
|
|
|
|
postPatch =
|
|
let
|
|
fiat-reference-data = fetchFromGitHub {
|
|
owner = "firedrakeproject";
|
|
repo = "fiat-reference-data";
|
|
rev = "508bd755e024010f6fc691a36e51a8f4d7de7efe";
|
|
hash = "sha256-Ylq5u3d54SnCiB3nLRkkQu7IkRVuMcUWPgIjn7SIQ0M=";
|
|
};
|
|
in
|
|
''
|
|
ln -s ${fiat-reference-data} test/FIAT/regression/fiat-reference-data
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
numpy
|
|
scipy
|
|
sympy
|
|
recursivenodes
|
|
firedrake-ufl
|
|
symengine
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"FIAT"
|
|
"finat"
|
|
"finat.ufl"
|
|
"gem"
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlags = [
|
|
"--skip-download"
|
|
];
|
|
|
|
passthru = {
|
|
# python updater script sets the wrong tag
|
|
skipBulkUpdate = true;
|
|
|
|
updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"([0-9.]+)"
|
|
];
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "FInite element Automatic Tabulator";
|
|
homepage = "http://fenics-fiat.readthedocs.org/";
|
|
downloadPage = "https://github.com/firedrakeproject/fiat";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = with lib.maintainers; [ qbisi ];
|
|
};
|
|
})
|