We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39f09b0 + 21a14ae commit 5acdd7eCopy full SHA for 5acdd7e
pkgs/by-name/es/esptool/package.nix
@@ -43,6 +43,10 @@ python3Packages.buildPythonApplication rec {
43
hsm = [ python-pkcs11 ];
44
};
45
46
+ postInstall = ''
47
+ rm -v $out/bin/*.py
48
+ '';
49
+
50
nativeCheckInputs =
51
with python3Packages;
52
[
@@ -62,6 +66,15 @@ python3Packages.buildPythonApplication rec {
62
66
"host_test"
63
67
];
64
68
69
+ disabledTests = [
70
+ # remove the deprecated .py entrypoints, because our wrapper tries to
71
+ # import esptool and finds esptool.py in $out/bin, which breaks.
72
+ "test_esptool_py"
73
+ "test_espefuse_py"
74
+ "test_espsecure_py"
75
+ "test_esp_rfc2217_server_py"
76
+ ];
77
65
78
postCheck = ''
79
export SOFTHSM2_CONF=$(mktemp)
80
echo "directories.tokendir = $(mktemp -d)" > "$SOFTHSM2_CONF"
0 commit comments