-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
90 lines (68 loc) · 1.28 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{ buildPythonPackage
, black
, flit
, sphinx
, pylint
, pytest
, dask
, soundfile
, xarray
, notebook
}:
let
# Development tools used during package build
nativeBuildInputs = [
black
flit
sphinx
pylint
];
# Run-time Python dependencies
propagatedBuildInputs = [
dask
soundfile
xarray
];
# Test-dependencies
checkInputs = [
pytest
];
# Other dev dependencies not used during build
devInputs = [
notebook
];
allInputs = nativeBuildInputs ++ propagatedBuildInputs ++ checkInputs ++ devInputs;
pkg = buildPythonPackage {
pname = "xoundfile";
version = "dev";
format = "pyproject";
src = ./.;
inherit nativeBuildInputs propagatedBuildInputs checkInputs;
preBuild = ''
echo "Checking for errors with pylint..."
pylint -E xoundfile
'';
postInstall = ''
echo "Checking formatting..."
black --check xoundfile
echo "Creating html docs..."
make -C doc html
mkdir -p $out
mv doc/build/html $doc
'';
checkPhase = ''
pytest tests
'';
doCheck = true;
shellHook = ''
export PYTHONPATH="$(pwd):"$PYTHONPATH""
'';
outputs = [
"out"
"doc"
];
passthru = {
inherit allInputs;
};
};
in pkg