summary refs log tree commit diff
path: root/pkgs/development/python-modules
Commit message (Collapse)AuthorAge
* Revert "python site.py that loads pth files anywhere on PYTHONPATH"Florian Friesdorf2012-02-28
| | | | | | This reverts commit fac80449abd57c271dfb98d392e49e4135dfc50c. svn path=/nixpkgs/branches/stdenv-updates/; revision=32663
* Revert "pth file with deps, only current package's scripts, no colliding files"Florian Friesdorf2012-02-28
| | | | | | This reverts commit 3a37caa6a278fb244eac4a6bb1452d1914159be8. svn path=/nixpkgs/branches/stdenv-updates/; revision=32662
* Revert "clean setuptools from colliding files - it is not using buildPythonPkg"Florian Friesdorf2012-02-28
| | | | | | This reverts commit 9bc390eb7b9bcbe8b4951797010efd27afbe7afd. svn path=/nixpkgs/branches/stdenv-updates/; revision=32661
* Revert "include site for python wrappers to enable deps via pth files"Florian Friesdorf2012-02-28
| | | | | | This reverts commit dca280ab0b668553c50506ab7b31284e8477a803. svn path=/nixpkgs/branches/stdenv-updates/; revision=32660
* Revert "prevent distutils during module install from downloading and load ↵Florian Friesdorf2012-02-28
| | | | | | | | pth files" This reverts commit 2a151d9df99f68c555a9f1fd2c80b8889561e9e3. svn path=/nixpkgs/branches/stdenv-updates/; revision=32659
* Revert "insert pth eggs at index of site-packages they come from"Florian Friesdorf2012-02-28
| | | | | | This reverts commit daa626efe76d8602c7892aaa338d526ea88bfe1b. svn path=/nixpkgs/branches/stdenv-updates/; revision=32658
* Revert "meta for offline-distutils"Florian Friesdorf2012-02-28
| | | | | | This reverts commit 8fcf025e5f80519a6f06c0b36aee007fe16a6e31. svn path=/nixpkgs/branches/stdenv-updates/; revision=32657
* Revert "removal of deps' scripts only if easy-install.pth exists"Florian Friesdorf2012-02-28
| | | | | | This reverts commit a74507f63e2af67cf64dc3e67bfbf2771120f67e. svn path=/nixpkgs/branches/stdenv-updates/; revision=32655
* Revert "include site in pythonpath of wrapped scripts, if python-site is ↵Florian Friesdorf2012-02-28
| | | | | | | | installed" This reverts commit 1ac12b0d4b64936104cb6031b02c92c3d1845ae5. svn path=/nixpkgs/branches/stdenv-updates/; revision=32654
* Revert "suffix pythonpath"Florian Friesdorf2012-02-28
| | | | | | This reverts commit a9a2b1e0dd8cdbb1dff3253d303b35d41f29b0f9. svn path=/nixpkgs/branches/stdenv-updates/; revision=32652
* Revert "PYTHONPATH in preConfigure instead of configurePhase"Florian Friesdorf2012-02-28
| | | | | | This reverts commit a9873e9412d5ffb333baaf33502c8dff62548fa6. svn path=/nixpkgs/branches/stdenv-updates/; revision=32651
* Revert "added unzip to buildPythonPackage's buildInputs - used quite often"Florian Friesdorf2012-02-28
| | | | | | This reverts commit f067ecb4911f154fe2c64434abdc5a8b79625f5a. svn path=/nixpkgs/branches/stdenv-updates/; revision=32644
* Revert "move checkPhase after fixupPhase for python packages"Florian Friesdorf2012-02-28
| | | | | | This reverts commit 413c44da228754018a2920cb556303e803a9d488. svn path=/nixpkgs/branches/stdenv-updates/; revision=32643
* Revert "enable preConfigure for python packages again"Florian Friesdorf2012-02-28
| | | | | | This reverts commit a513314290ba0d78400ea4902301f421e0fecdd2. svn path=/nixpkgs/branches/stdenv-updates/; revision=32642
* enable preConfigure for python packages againFlorian Friesdorf2012-02-27
| | | | | | authored by: chaoflow, goibhniu svn path=/nixpkgs/branches/stdenv-updates/; revision=32626
* move checkPhase after fixupPhase for python packagesFlorian Friesdorf2012-02-27
| | | | | | authored by: chaoflow, goibhniu svn path=/nixpkgs/branches/stdenv-updates/; revision=32625
* added unzip to buildPythonPackage's buildInputs - used quite oftenFlorian Friesdorf2012-02-27
| | | | | | authored by: chaoflow, goibhniu svn path=/nixpkgs/branches/stdenv-updates/; revision=32624
* PYTHONPATH in preConfigure instead of configurePhaseFlorian Friesdorf2012-02-26
| | | | | | | | | enables a normal configurePhase also for python packages (e.g. libxml2 python bindings) authored by: chaoflow, goibhniu svn path=/nixpkgs/branches/stdenv-updates/; revision=32595
* suffix pythonpathFlorian Friesdorf2012-02-26
| | | | | | this is already the case for the pythonXYFull svn path=/nixpkgs/branches/stdenv-updates/; revision=32594
* include site in pythonpath of wrapped scripts, if python-site is installedFlorian Friesdorf2012-02-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=32592
* removal of deps' scripts only if easy-install.pth existsFlorian Friesdorf2012-02-26
| | | | | | solves duplicate installation for packages that do not use setuptools svn path=/nixpkgs/branches/stdenv-updates/; revision=32591
* meta for offline-distutilsFlorian Friesdorf2012-02-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=32586
* insert pth eggs at index of site-packages they come fromFlorian Friesdorf2012-02-26
| | | | | | thx Rok Garbas! svn path=/nixpkgs/branches/stdenv-updates/; revision=32584
* prevent distutils during module install from downloading and load pth filesFlorian Friesdorf2012-02-26
| | | | | | based on a patch by Cillian de Róiste svn path=/nixpkgs/branches/stdenv-updates/; revision=32583
* include site for python wrappers to enable deps via pth filesFlorian Friesdorf2012-02-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=32582
* clean setuptools from colliding files - it is not using buildPythonPkgFlorian Friesdorf2012-02-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=32581
* pth file with deps, only current package's scripts, no colliding filesFlorian Friesdorf2012-02-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=32580
* python site.py that loads pth files anywhere on PYTHONPATHFlorian Friesdorf2012-02-26
| | | | | | | This file is normally created by easy_install / distutils, but removed and packaged separately to avoid collisions and allow for more use cases. svn path=/nixpkgs/branches/stdenv-updates/; revision=32579
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* * PIL updated to 1.1.7.Eelco Dolstra2011-12-29
| | | | svn path=/nixpkgs/trunk/; revision=31142
* pyside-1.0.9Florian Friesdorf2011-12-17
| | | | svn path=/nixpkgs/trunk/; revision=30950
* * Applied a patch to get Euca2ools / Boto to work on Python 2.7.Eelco Dolstra2011-10-21
| | | | svn path=/nixpkgs/trunk/; revision=29956
* Remove wxPython26 since it is not usedYury G. Kudryashov2011-10-11
| | | | svn path=/nixpkgs/trunk/; revision=29773
* * wxPython updated to 2.8.12.0.Eelco Dolstra2011-09-20
| | | | svn path=/nixpkgs/trunk/; revision=29395
* add jbrout, a photo manager using IPTC keywords/EXIFDavid Guibert2011-08-22
| | | | svn path=/nixpkgs/trunk/; revision=28759
* update python modules: sip and pyqtDavid Guibert2011-08-09
| | | | svn path=/nixpkgs/trunk/; revision=28444
* * Update kdeadmin and kdegames.Eelco Dolstra2011-07-22
| | | | svn path=/nixpkgs/branches/kde-4.7/; revision=27898
* * Update kdegames.Eelco Dolstra2011-07-21
| | | | svn path=/nixpkgs/branches/kde-4.7/; revision=27894
* * Update pycups, PyQt and SIP.Eelco Dolstra2011-07-21
| | | | svn path=/nixpkgs/branches/kde-4.7/; revision=27889
* * dbus-python updated to 0.84.0.Eelco Dolstra2011-07-21
| | | | svn path=/nixpkgs/branches/kde-4.7/; revision=27882
* * Move wxPython into python-packages.nix so that you can get wxPythonEelco Dolstra2011-05-04
| | | | | | | built for the appropriate Python version (e.g. python26Packages.wxPython). svn path=/nixpkgs/trunk/; revision=27127
* * wxPython updated to 2.8.12.0.Eelco Dolstra2011-05-03
| | | | | | | * wxPython builder: wrap the Python programs (such as pyshell) so that they actually work. svn path=/nixpkgs/trunk/; revision=27122
* * Remove the hard-coded reference to Python 2.6.Eelco Dolstra2011-04-04
| | | | svn path=/nixpkgs/branches/modular-python/; revision=26676
* * Generic Python builder: support preCheck and postCheck.Eelco Dolstra2011-03-30
| | | | svn path=/nixpkgs/branches/modular-python/; revision=26602
* * wrapPythonPrograms: don't hard-code the Python library prefix.Eelco Dolstra2011-03-29
| | | | svn path=/nixpkgs/branches/modular-python/; revision=26594
* * Move buildPythonPackage and setuptools into python-packages.nix.Eelco Dolstra2011-03-29
| | | | | | This ensures that they're built with the same "python" argument. svn path=/nixpkgs/branches/modular-python/; revision=26593
* * wrapPythonPrograms: rewrite the common "#! .../env python" idiom toEelco Dolstra2011-03-28
| | | | | | "#! .../python". svn path=/nixpkgs/branches/modular-python/; revision=26583
* * Move the wrapPythonPrograms function into a separate setup hookEelco Dolstra2011-03-28
| | | | | | (wrapPython). svn path=/nixpkgs/branches/modular-python/; revision=26580
* * buildPythonPackage: added an argument `pythonPath' to specify PythonEelco Dolstra2011-03-28
| | | | | | | | | | | | dependencies that are *not* propagated to the user environment (as opposed to `propagatedBuildInputs'). For instance, if you install `iotop', you typically don't want its Python dependencies polluting the user environment. * buildPythonPackage: some cleanup (e.g. use function argument defaults instead of `if attrs ? foo then attrs.foo else []'). svn path=/nixpkgs/branches/modular-python/; revision=26571
* * Revert PyQt and sip because the upgrade breaks KDE, but useEelco Dolstra2011-03-04
| | | | | | tarballs on nixos.org. svn path=/nixpkgs/trunk/; revision=26164