tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
eliot-tree: use `addBinToPathHook`
Pol Dellaiera
1 year ago
df0dc112
6a79b58e
+2
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
el
eliot-tree
package.nix
+2
-5
pkgs/by-name/el/eliot-tree/package.nix
···
2
2
lib,
3
3
python3Packages,
4
4
fetchPypi,
5
5
+
addBinToPathHook,
5
6
}:
6
7
7
8
python3Packages.buildPythonApplication rec {
···
32
33
];
33
34
34
35
nativeCheckInputs = with python3Packages; [
36
36
+
addBinToPathHook
35
37
pytestCheckHook
36
38
testtools
37
39
];
38
38
-
39
39
-
# Tests run eliot-tree in out/bin.
40
40
-
preCheck = ''
41
41
-
export PATH=$out/bin:$PATH
42
42
-
'';
43
40
44
41
pythonImportsCheck = [ "eliottree" ];
45
42