Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2b886865cfa1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a0bf1c530f83
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 28, 2019

  1. virtualenv: Update patch for 16.2.0 (#57533)

    (Cherry-picked from 2556b7b)
    glasserc authored and mweinelt committed Mar 28, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    0bf6a85 View commit details

Commits on Mar 29, 2019

  1. Merge pull request #58499 from mweinelt/virtualenv/py_version_backport

    [19.03] virtualenv: Update patch for 16.2.0
    dotlambda authored Mar 29, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    a0bf1c5 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/development/python-modules/virtualenv/virtualenv-change-prefix.patch
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ index bcf3225..3530997 100755
site_filename_dst = change_prefix(site_filename, home_dir)
site_dir = os.path.dirname(site_filename_dst)
writefile(site_filename_dst, SITE_PY)
+ wrapper_path = join(prefix, "lib", py_version, "site-packages")
+ wrapper_path = join(prefix, "lib", PY_VERSION, "site-packages")
+ writefile(
+ join(site_dir, 'sitecustomize.py',),
+ "import sys; sys.path.append('%s')" % wrapper_path