1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 08:59:20 +03:00
nixpkgs/pkgs/development/python-modules/sfepy/default.nix

76 lines
1.4 KiB
Nix
Raw Normal View History

2019-08-28 18:19:09 -04:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2019-08-28 18:19:09 -04:00
, numpy
, scipy
, matplotlib
, pyparsing
, tables
, cython
, python
, sympy
2021-02-25 21:08:32 -05:00
, meshio
, mpi4py
, psutil
, openssh
, pythonOlder
2019-08-28 18:19:09 -04:00
}:
buildPythonPackage rec {
pname = "sfepy";
2022-01-04 13:59:16 -05:00
version = "2021.4";
2021-02-25 21:08:32 -05:00
disabled = pythonOlder "3.8";
2019-08-28 18:19:09 -04:00
src = fetchFromGitHub {
owner = "sfepy";
repo = "sfepy";
rev = "release_${version}";
2022-01-04 13:59:16 -05:00
sha256 = "sha256-+wvFcME02la5JwzD5bvPgBBlkQKF5LWz5MC3+0s5jSs=";
2019-08-28 18:19:09 -04:00
};
propagatedBuildInputs = [
numpy
cython
scipy
matplotlib
pyparsing
tables
sympy
2021-02-25 21:08:32 -05:00
meshio
mpi4py
psutil
openssh
2019-08-28 18:19:09 -04:00
];
postPatch = ''
2021-02-25 21:08:32 -05:00
# broken tests
rm tests/test_meshio.py
2019-08-28 18:19:09 -04:00
# slow tests
rm tests/test_input_*.py
rm tests/test_elasticity_small_strain.py
rm tests/test_term_call_modes.py
rm tests/test_refine_hanging.py
rm tests/test_hyperelastic_tlul.py
rm tests/test_poly_spaces.py
rm tests/test_linear_solvers.py
rm tests/test_quadratures.py
'';
checkPhase = ''
2021-02-25 21:08:32 -05:00
export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh
2019-08-28 18:19:09 -04:00
export HOME=$TMPDIR
mv sfepy sfepy.hidden
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
${python.interpreter} run_tests.py -o $TMPDIR/test_outputs --raise
'';
meta = with lib; {
homepage = "https://sfepy.org/";
2019-08-28 18:19:09 -04:00
description = "Simple Finite Elements in Python";
license = licenses.bsd3;
maintainers = with maintainers; [ wd15 ];
};
}