python312Packages.fenics-ffcx: init at 0.9.0

This commit is contained in:
qbisi
2025-04-21 00:47:54 +08:00
parent e4778f3cd4
commit 0c3ed24d1e
2 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
numpy,
cffi,
fenics-ufl,
fenics-basix,
sympy,
numba,
pytestCheckHook,
addBinToPathHook,
}:
buildPythonPackage rec {
pname = "fenics-ffcx";
version = "0.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fenics";
repo = "ffcx";
tag = "v${version}";
hash = "sha256-eAV//RLbrxyhqgbZ2DiR7qML7xfgPn0/Seh+2no0x8w=";
};
pythonRelaxDeps = [
"fenics-ufl"
];
build-system = [
setuptools
];
dependencies = [
numpy
cffi
setuptools
fenics-ufl
fenics-basix
];
pythonImportsCheck = [
"ffcx"
];
nativeCheckInputs = [
sympy
numba
pytestCheckHook
addBinToPathHook
];
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=unused-command-line-argument";
meta = {
homepage = "https://fenicsproject.org";
downloadPage = "https://github.com/fenics/ffcx";
description = "FEniCSx Form Compiler";
changelog = "https://github.com/fenics/ffcx/releases/tag/${src.tag}";
mainProgram = "ffcx";
license = with lib.licenses; [
unlicense
lgpl3Plus
];
maintainers = with lib.maintainers; [ qbisi ];
};
}

View File

@@ -4861,6 +4861,8 @@ self: super: with self; {
fenics-basix = callPackage ../development/python-modules/fenics-basix { };
fenics-ffcx = callPackage ../development/python-modules/fenics-ffcx { };
fenics-ufl = callPackage ../development/python-modules/fenics-ufl { };
ffcv = callPackage ../development/python-modules/ffcv { };