Rok Garbas 602f7e5aa4 python: collision in names when developing 2 and more python packages with nix
when you run nix-shell 2 times at the same time of project (but different
branches) you get collision in names inside /tmp folder. i solved this by
hashing current path of developing folder and using that as indentifier while
still keeping name at the end.

diff --git a/pkgs/development/python-modules/generic/default.nix
b/pkgs/development/python-modules/generic/default.nix index 4c9c53a..6ec7934
100644 --- a/pkgs/development/python-modules/generic/default.nix +++
b/pkgs/development/python-modules/generic/default.nix @@ -161,11 +161,12 @@ if
disabled then throw "${name} not supported for interpreter ${python.executabl

   shellHook = attrs.shellHook or ''
     if test -e setup.py; then
-       mkdir -p /tmp/$name/lib/${python.libPrefix}/site-packages
+       tmp_path=/tmp/`pwd | md5sum | cut -f 1 -d " "`-$name
+       mkdir -p $tmp_path/lib/${python.libPrefix}/site-packages
        ${preShellHook}
-       export PATH="/tmp/$name/bin:$PATH"
-       export PYTHONPATH="/tmp/$name/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
-       ${python}/bin/${python.executable} setup.py develop --prefix /tmp/$name
+       export PATH="$tmp_path/bin:$PATH"
+       export PYTHONPATH="$tmp_path/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
+       ${python}/bin/${python.executable} setup.py develop --prefix $tmp_path
        ${postShellHook}
     fi
   '';
2014-09-19 14:23:45 +02:00
..
2014-06-22 20:52:52 +02:00
2014-09-12 00:26:50 +02:00
2014-08-24 22:31:37 +02:00
2014-09-04 18:48:08 +02:00
2013-07-14 04:17:07 +03:00
2014-08-24 22:31:37 +02:00
2014-02-02 14:54:40 +01:00
2014-08-26 14:41:44 +02:00
2014-05-13 16:11:06 +02:00
2014-07-07 14:23:55 +08:00
2014-08-01 16:56:27 +02:00
2014-09-10 15:41:07 +02:00
2014-09-18 14:03:16 +02:00
2014-03-24 00:16:42 -04:00
2014-07-05 21:41:04 +02:00
2013-07-14 04:17:07 +03:00