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 5d35e62 + 6661c54 commit aad49d5Copy full SHA for aad49d5
pkgs/development/python-modules/virtualenv-clone/default.nix
@@ -25,6 +25,14 @@ buildPythonPackage rec {
25
26
substituteInPlace tests/test_virtualenv_sys.py \
27
--replace-fail "'virtualenv'" "'${virtualenv}/bin/virtualenv'"
28
+
29
+ # PermissionError: [Errno 13] Permission denied: '/tmp/test_fixup_pth_file.pth'
30
+ # Unable to reproduce.
31
+ # Theory: this fixed path may collide with itself on darwin if this package is built for multiple python versions simultaneously
32
+ substituteInPlace tests/test_fixup_scripts.py \
33
+ --replace-fail \
34
+ "pth = '/tmp/test_fixup_pth_file.pth'" \
35
+ "pth = '$(mktemp -d)/test_fixup_pth_file.pth'"
36
'';
37
38
propagatedBuildInputs = [ virtualenv ];
0 commit comments