tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.misoc: Actually run tests.
Doron Behar
6 months ago
0a130740
79a84bef
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
misoc
default.nix
+5
-1
pkgs/development/python-modules/misoc/default.nix
reviewed
···
10
10
migen,
11
11
12
12
# tests
13
13
+
unittestCheckHook,
13
14
numpy,
14
15
}:
15
16
···
32
33
migen
33
34
];
34
35
35
35
-
nativeCheckInputs = [ numpy ];
36
36
+
nativeCheckInputs = [
37
37
+
unittestCheckHook
38
38
+
numpy
39
39
+
];
36
40
37
41
pythonImportsCheck = [ "misoc" ];
38
42