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