1{ 2 buildPythonPackage, 3 gfortran, 4 meson-python, 5 numpy, 6 scikits-odes-core, 7}: 8 9buildPythonPackage rec { 10 inherit (scikits-odes-core) version src; 11 pname = "scikits-odes-daepack"; 12 pyproject = true; 13 14 sourceRoot = "${src.name}/packages/scikits-odes-daepack"; 15 16 build-system = [ 17 meson-python 18 numpy 19 ]; 20 21 nativeBuildInputs = [ gfortran ]; 22 23 dependencies = [ 24 numpy 25 scikits-odes-core 26 ]; 27 28 pythonImportsCheck = [ "scikits_odes_daepack" ]; 29 30 # no tests 31 doCheck = false; 32 33 meta = scikits-odes-core.meta // { 34 description = "Wrapper around daepack"; 35 homepage = "https://github.com/bmcage/odes/blob/master/packages/scikits-odes-daepack"; 36 }; 37}