about summary refs log tree commit diff
path: root/pkgs/development/python-modules/buildout-nix
Commit message (Collapse)AuthorAge
* pythonPackages: zc.buildout-nix: 2.5.0 -> 2.5.3Asko Soukka2016-09-29
|
* Python: use PyPI mirror (#15001)Frederik Rietdijk2016-04-26
| | | | | | * mirrors: add pypi * Python: Use pypi mirror for all PyPI packages
* zc.buildout-nix: 2.4.3 -> 2.5.0Asko Soukka2015-12-12
|
* zc_buildout_nix: 1.4.0 -> 1.4.3Asko Soukka2015-09-28
|
* zc_buildout_nix: 2.2.1 -> 2.4.0Asko Soukka2015-07-22
|
* zc_buildout_nix: update to 2.2.1Rok Garbas2013-11-21
|
* Bugfix: zc_buildout_nix, replace links to eggs in the store which have been ↵Cillian de Róiste2013-10-08
| | | | gc-ed
* Add a patched version of buildout 2.2.0 for development with nixCillian de Róiste2013-08-28
Without this patch buildout will copy eggs from the nix store into the ./eggs directory and then try to compile them. This fails because they are read only. This patch changes the behaviour to create symlinks to eggs available in the nix store instead of copying them, and not to try to compile the eggs in the store. To differentiate this from the default buildout (which may be provided otherwise e.g. as a dependency) the executable is renamed to buildout-nix. This can be used in conjuntion with myEnvFun to create development environments which make use of the python modules available in the store while downloading any additional required eggs. A pleasant side effect is that you can conveniently replace the symlink with a copy for debugging purposes.