about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/virtualenvwrapper/default.nix
blob: 93af1ab0c4acc807ede5aa7489502079b382aa98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{ lib
, buildPythonPackage
, fetchPypi
, pbr
, pip
, pkgs
, stevedore
, virtualenv
, virtualenv-clone
, python
}:

buildPythonPackage rec {
  pname = "virtualenvwrapper";
  version = "4.8.4";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "51a1a934e7ed0ff221bdd91bf9d3b604d875afbb3aa2367133503fee168f5bfa";
  };

  # pip depend on $HOME setting
  preConfigure = "export HOME=$TMPDIR";

  buildInputs = [ pbr pip pkgs.which ];
  propagatedBuildInputs = [ stevedore virtualenv virtualenv-clone ];

  postPatch = ''
    for file in "virtualenvwrapper.sh" "virtualenvwrapper_lazy.sh"; do
      substituteInPlace "$file" --replace "which" "${pkgs.which}/bin/which"

      # We can't set PYTHONPATH in a normal way (like exporting in a wrapper
      # script) because the user has to evaluate the script and we don't want
      # modify the global PYTHONPATH which would affect the user's
      # environment.
      # Furthermore it isn't possible to just use VIRTUALENVWRAPPER_PYTHON
      # for this workaround, because this variable is well quoted inside the
      # shell script.
      # (the trailing " -" is required to only replace things like these one:
      # "$VIRTUALENVWRAPPER_PYTHON" -c "import os,[...] and not in
      # if-statements or anything like that.
      # ...and yes, this "patch" is hacky :)
      substituteInPlace "$file" --replace '"$VIRTUALENVWRAPPER_PYTHON" -' 'env PYTHONPATH="$VIRTUALENVWRAPPER_PYTHONPATH" "$VIRTUALENVWRAPPER_PYTHON" -'
    done
  '';

  postInstall = ''
    # This might look like a dirty hack but we can't use the makeWrapper function because
    # the wrapped file were then called via "exec". The virtualenvwrapper shell scripts
    # aren't normal executables. Instead, the user has to evaluate them.

    for file in "virtualenvwrapper.sh" "virtualenvwrapper_lazy.sh"; do
      local wrapper="$out/bin/$file"
      local wrapped="$out/bin/.$file-wrapped"
      mv "$wrapper" "$wrapped"

      # WARNING: Don't indent the lines below because that would break EOF
      cat > "$wrapper" << EOF
export PATH="${python}/bin:\$PATH"
export VIRTUALENVWRAPPER_PYTHONPATH="$PYTHONPATH:$(toPythonPath $out)"
source "$wrapped"
EOF

      chmod -x "$wrapped"
      chmod +x "$wrapper"
    done
  '';

  meta = with lib; {
    description = "Enhancements to virtualenv";
    homepage = "https://pypi.python.org/pypi/virtualenvwrapper";
    license = licenses.mit;
  };

}