mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
84 lines
1.5 KiB
Nix
84 lines
1.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, scipy
|
|
, matplotlib
|
|
, pyparsing
|
|
, tables
|
|
, cython
|
|
, python
|
|
, sympy
|
|
, meshio
|
|
, mpi4py
|
|
, psutil
|
|
, openssh
|
|
, pyvista
|
|
, pytest
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sfepy";
|
|
version = "2022.3";
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sfepy";
|
|
repo = "sfepy";
|
|
rev = "release_${version}";
|
|
sha256 = "sha256-6AhyO6LRG6N62ZAoPCZpRKu4ZBzj9IHkurhKFIPFAJI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
cython
|
|
scipy
|
|
matplotlib
|
|
pyparsing
|
|
tables
|
|
sympy
|
|
meshio
|
|
mpi4py
|
|
psutil
|
|
openssh
|
|
pyvista
|
|
];
|
|
|
|
postPatch = ''
|
|
# broken tests
|
|
rm sfepy/tests/test_meshio.py
|
|
|
|
# slow tests
|
|
rm sfepy/tests/test_io.py
|
|
rm sfepy/tests/test_elasticity_small_strain.py
|
|
rm sfepy/tests/test_term_call_modes.py
|
|
rm sfepy/tests/test_refine_hanging.py
|
|
rm sfepy/tests/test_hyperelastic_tlul.py
|
|
rm sfepy/tests/test_poly_spaces.py
|
|
rm sfepy/tests/test_linear_solvers.py
|
|
rm sfepy/tests/test_quadratures.py
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytest
|
|
];
|
|
|
|
checkPhase = ''
|
|
export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh
|
|
export HOME=$TMPDIR
|
|
mv sfepy sfepy.hidden
|
|
mkdir -p $HOME/.matplotlib
|
|
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
|
|
${python.interpreter} -c "import sfepy; sfepy.test()"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sfepy.org/";
|
|
description = "Simple Finite Elements in Python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wd15 ];
|
|
};
|
|
}
|