-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
62 lines (51 loc) · 814 Bytes
/
default.nix
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ buildPythonPackage
, flit-core
, acoustics
, h5py
, numba
, numpy
, scipy
, matplotlib
, numexpr
, pyyaml
, black
, nbconvert
, pylint
, pytest
, pytestCheckHook
, turbulence
}:
buildPythonPackage rec {
pname = "pstd";
version = "dev";
format = "pyproject";
src = ./.;
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
acoustics
h5py
numba
numpy
scipy
matplotlib
numexpr
pyyaml
];
checkInputs = [
black
nbconvert
pylint
pytest
pytestCheckHook
turbulence
];
preCheck = ''
echo "Checking formatting with black..."
black --check pstd tests docs/conf.py
echo "Static analysis with pylint..."
pylint -E pstd
'';
passthru.allInputs = nativeBuildInputs ++ propagatedBuildInputs ++ checkInputs;
}