Commit Graph

2073 Commits

Author SHA1 Message Date
Domen Kožar 6936b5c183 Merge pull request #9547 from FRidh/scikitlearn
scikit-learn: fix i686 build failures
2015-08-31 00:05:43 +02:00
Arseniy Seroka ca29db9262 Merge pull request #9519 from FRidh/dask
python-packages dask: init at 0.7.0
2015-08-31 01:00:11 +03:00
Frederik Rietdijk 46e51883d8 scikit-learn: fix i686 build failures
Currently i686 builds fail because a couple of doctests fail.
The values are correct, but the dtype is missing.
This commit disables doctests.
2015-08-30 09:55:29 +02:00
Daniel Fox Franke e69a162ced pythonPackages.gevent: works just fine on Darwin
Closes #8569, #7275, and #5782. Obviates #8730. As asserted by
@lethalman and observed by @aflatter and @ecyrb, this package
is currently building just fine on Darwin.
2015-08-29 23:10:11 +02:00
Rok Garbas 07c4cbccf1 pythonPackages.pycdio: applied patch since driver_id can be also long type 2015-08-29 22:03:45 +02:00
Rok Garbas 0b4bcaad95 pythonPackages.gcutil: fix pinning of google_apputils version
also added some more metadata to the package
2015-08-29 21:39:35 +02:00
Rok Garbas 32dca6d3b2 pythonPackages.qscintilla: dont build on py3 and pypy
because qscintilla is not a standard python package ``buildPythonPackage`` is
not used and ``disabled`` does do anything.

diff --git a/pkgs/top-level/python-packages.nix
b/pkgs/top-level/python-packages.nix index 93d40c3..925ceb0 100644 ---
a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix
@@ -11823,35 +11823,36 @@ let }; };

-  qscintilla = pkgs.stdenv.mkDerivation rec {
-    # TODO: Qt5 support
-    name = "qscintilla-${version}";
-    version = pkgs.qscintilla.version;
-    disabled = isPy3k || isPyPy;
-
-    src = pkgs.qscintilla.src;
-
-    buildInputs = with pkgs; [ xorg.lndir qt4 pyqt4 python ];
-
-    preConfigure = ''
-      mkdir -p $out
-      lndir ${pkgs.pyqt4} $out
-      cd Python
-      ${python.executable} ./configure-old.py \
-          --destdir $out/lib/${python.libPrefix}/site-packages/PyQt4 \
-          --apidir $out/api/${python.libPrefix} \
-          -n ${pkgs.qscintilla}/include \
-          -o ${pkgs.qscintilla}/lib \
-          --sipdir $out/share/sip
-    '';
+  qscintilla = if isPy3k || isPyPy
+    then throw "qscintilla-${pkgs.qscintilla.version} not supported for interpreter ${python.executable}"
+    else pkgs.stdenv.mkDerivation rec {
+      # TODO: Qt5 support
+      name = "qscintilla-${version}";
+      version = pkgs.qscintilla.version;
+
+      src = pkgs.qscintilla.src;
+
+      buildInputs = with pkgs; [ xorg.lndir qt4 pyqt4 python ];
+
+      preConfigure = ''
+        mkdir -p $out
+        lndir ${pkgs.pyqt4} $out
+        cd Python
+        ${python.executable} ./configure-old.py \
+            --destdir $out/lib/${python.libPrefix}/site-packages/PyQt4 \
+            --apidir $out/api/${python.libPrefix} \
+            -n ${pkgs.qscintilla}/include \
+            -o ${pkgs.qscintilla}/lib \
+            --sipdir $out/share/sip
+      '';

-    meta = with stdenv.lib; {
-      description = "A Python binding to QScintilla, Qt based text editing control";
-      license = licenses.lgpl21Plus;
-      maintainers = [ "abcz2.uprola@gmail.com" ];
-      platforms = platforms.linux;
+      meta = with stdenv.lib; {
+        description = "A Python binding to QScintilla, Qt based text editing control";
+        license = licenses.lgpl21Plus;
+        maintainers = [ "abcz2.uprola@gmail.com" ];
+        platforms = platforms.linux;
+      };
     };
-  };

   qserve = buildPythonPackage rec {
2015-08-29 21:22:29 +02:00
Bjørn Forsman ab6af31ecb spyder: enable for all python interpreters
Rope is not ported to python3 yet, so it is disabled (it's a
"recommended" dependency, not critical).
2015-08-29 17:41:35 +02:00
Domen Kožar d9cb4f92b5 pythonPackages.protobuf: disable on pypy
(cherry picked from commit 172d2793b9819eb6fa87f88806aaf6c7587e3a2c)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-29 13:17:33 +02:00
Frederik Rietdijk 12553227d2 python-packages dask: init at 0.7.0 2015-08-29 13:03:36 +02:00
Frederik Rietdijk 582c9a81dc python-packages dill: init at 0.2.4 2015-08-29 13:03:01 +02:00
Frederik Rietdijk 88d444b36f python-packages objgraph: init at 2.0.1 2015-08-29 13:02:44 +02:00
Frederik Rietdijk d3bc5765dd python-packages xray: init at 0.6.0 2015-08-29 12:36:11 +02:00
Frederik Rietdijk df8ddf9809 python-packages ipyparallel: init at 4.0.2 2015-08-29 10:57:37 +02:00
Frederik Rietdijk 4aed6b2d29 python-packages nbconvert: init at 4.0.0 2015-08-29 10:57:37 +02:00
Frederik Rietdijk 2e27fdab1f python-packages nbformat: init at 4.0.0 2015-08-29 10:57:36 +02:00
Frederik Rietdijk 70dddefc96 python-packages notebook: init at 4.0.4
The Jupyter notebook used to be part of ipython
2015-08-29 10:57:36 +02:00
Frederik Rietdijk 529083ae67 python-packages qtconsole: init at 4.0.1
The qtconsole used to be part of the ipython package.
2015-08-29 10:57:36 +02:00
Frederik Rietdijk 86137992f7 python-packages jupyter_client: init at 4.0.0 2015-08-29 10:57:35 +02:00
Frederik Rietdijk 50aed1ee10 importlib: disable for Python>2.6 and PyPy
importlib is part of the standard library for Python > 2.6 and PyPy.

Tested with nix-shell for all *Packages.importlib versions.
2015-08-29 10:43:42 +02:00
Frederik Rietdijk e9407cda10 python-packages ipykernel: init at 4.0.3 2015-08-29 10:36:42 +02:00
Frederik Rietdijk 3ccedc7630 python-packages ipython: 3.2 -> 4.0 2015-08-29 10:36:42 +02:00
Frederik Rietdijk 2669bf2005 python-packages jupyter_core: init at 4.0.4 2015-08-29 10:36:42 +02:00
Frederik Rietdijk 470c99125a python-packages traitlets: init at 4.0.0 2015-08-29 10:36:41 +02:00
Frederik Rietdijk 12e9aaf753 python-packages ipython_genutils: init at 0.1.0 2015-08-29 10:36:41 +02:00
Frederik Rietdijk d0f947cfc4 python-packages pickleshare: init at 0.5 2015-08-29 10:36:41 +02:00
Frederik Rietdijk 650116a773 python-packages pathpy: 5.2 -> 7.6
Note that tests fail because of apparently a bug in the dependency
pytestrunner.

The latest version of pathpy is 8.0. However, that version breaks the qtconsole.
2015-08-29 10:36:41 +02:00
Frederik Rietdijk c81eed6e61 python-packages pytestrunner: init at 2.6.2 2015-08-29 10:06:32 +02:00
Frederik Rietdijk 4b12129b1e python-packages mistune: init at 0.7.1 2015-08-29 10:05:02 +02:00
Frederik Rietdijk 80b356a918 python-packages simplegeneric: init at 0.8.1 2015-08-29 10:03:32 +02:00
Domen Kožar 6dab6ed76b Merge pull request #9494 from FRidh/nibabel
nibabel: remove failing test
2015-08-28 19:20:26 +02:00
Frederik Rietdijk 15aa28f71b pyfribidi: disable for pypy
Extension module. pypy is unsupported.
2015-08-28 16:51:07 +02:00
Frederik Rietdijk 2927f1a883 nibabel: remove failing test
One of the tests explicitly calls python, which will fail with python3.
The issue has been reported upstream,
https://github.com/nipy/nibabel/issues/341
For now, remove the test.

Fix also the license type.
2015-08-28 16:24:08 +02:00
Frederik Rietdijk 6ec74dfdef gmpy/gmpy2 disable for PyPy
gmpy and gmpy2 are both extension modules that cannot be used with PyPy.
2015-08-28 09:28:31 +02:00
Domen Kožar 0392197226 fix python_fedora build
(cherry picked from commit 959ab2ebcc19c6f44f2ec6ddb79d16af7d69d4d3)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-27 12:52:37 +02:00
Domen Kožar b65c5875e9 upgrade python-fedora, taskw
(cherry picked from commit 5384c08ea6d429bb25bef86a4730dd6e21bf5d65)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-27 11:16:36 +02:00
lethalman 144502c6e5 Merge pull request #9447 from dfoxfranke/reposurgeon
reposurgeon: init at 3.28
2015-08-27 10:52:58 +02:00
Luca Bruno f996e0b1f2 python box2d: use swig2 (ZHF) 2015-08-26 18:47:05 +02:00
lethalman c50b9fa038 Merge pull request #9227 from rehno-lindeque/fix/pgcli
pgcli: github owner changed from amjith to dbcli
2015-08-26 11:14:44 +02:00
lethalman df7b56ae97 Merge pull request #9258 from FRidh/setuptools_scm
python-packages setuptools_scm: 1.5.4 -> 1.7.0
2015-08-26 10:56:27 +02:00
Edward Tjörnhammar 481807f926 pythonPackages.py: add meta. Closes #9257 2015-08-26 10:54:36 +02:00
lethalman e2a260ef4b Merge pull request #9259 from FRidh/pexpect
python-packages pexpect: 2.3 -> 3.3
2015-08-26 10:49:45 +02:00
Daniel Fox Franke a04bd9301b hglib: init at 1.7 2015-08-25 21:58:24 -04:00
Kevin Marsh 358e915119 Update Django minor version numbers (to 1.8.4, 1.7.10, 1.4.22) 2015-08-25 16:56:32 +01:00
Rehno Lindeque a3e688030e fix: mycli requires prompt_toolkit to be pegged at 0.45 2015-08-23 06:28:53 +00:00
Rehno Lindeque 0cf852b78b mycli: init at 1.3.0
mycli is a clone of the nearly identical pgcli package already included in nixpkgs.
2015-08-23 06:28:52 +00:00
Nikolay Amiantov a4b9b5ce7d deluge: fix translations and desktop file 2015-08-22 23:17:19 +03:00
Tobias Geerinckx-Rice 5dd593dea5 prompt_toolkit: 0.46 -> 0.47 2015-08-21 13:42:52 +02:00
Tobias Geerinckx-Rice 901dd019de prompt_toolkit: update 0.45 -> 0.46 2015-08-21 00:58:14 +02:00
Ian Duncan 8d9e45c89e Upgrade to latest docker compose version 2015-08-19 14:11:20 -04:00
goibhniu d952b0ad4b Merge pull request #9241 from Twey/plover
Add Python package: OpenSteno Plover
2015-08-18 17:34:29 +02:00
Tobias Geerinckx-Rice 765d1159e9 python-packages: click 5.0 -> 5.1 2015-08-18 03:38:23 +02:00
Tobias Geerinckx-Rice 2ae4c0aa69 python-packages: click 4.1 -> 5.0 2015-08-17 23:26:52 +02:00
vbgl f2aeca7772 Merge pull request #9274 from mdorman/fix-python-cryptography
Update python-cryptography to 1.0.
2015-08-17 09:03:10 +02:00
Arseniy Seroka 1d35d31a2f Merge pull request #9268 from makefu/squashed-ovh
pythonPackages.ovh: init at 0.3.5
2015-08-16 23:50:17 +03:00
Michael Alan Dorman ebe451017c python-SleekXMPP: fix source URL 2015-08-16 15:55:29 -04:00
Michael Alan Dorman 3ea4485446 python-pyopenssl: update propagatedBuildInputs. 2015-08-16 15:54:59 -04:00
Michael Alan Dorman ef43cb270e python-cryptography: 0.6.1 -> 1.0
Update propagatedBuildInputs to get proper cffi version and shim
packages for older pythons.
2015-08-16 15:53:29 -04:00
Michael Alan Dorman ff192b72cf python-cryptography_vectors: 0.6.1 -> 1.0
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:29 -04:00
Michael Alan Dorman fcd5a4a2c3 python-pyasn1: 0.1.7 -> 0.1.8
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:28 -04:00
Michael Alan Dorman b0d26719da python-idna init at 2.0
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:26 -04:00
Felix Richter 6f77262e07 pythonPackages.ovh: init at 0.3.5
pythonPackages.d2to1: init at 0.2.11
\-> d2to1 is a build dependency of ovh
2015-08-16 16:07:40 +02:00
Bjørn Forsman 9f9f1db6e5 python-py: 1.4.24 -> 1.4.30
Unbreaks some packages because they require py>=1.4.29. Example build
error, from the 'argh' package:

  The 'py>=1.4.29' distribution was not found and is required by pytest

`nox-review wip` shows that there is a net reduction in build errors with
this patch.
2015-08-16 12:57:19 +02:00
Pascal Wittmann 7dbc01792e Merge pull request #8768 from FRidh/blaze
blaze: init at 0.8.2
2015-08-15 12:01:17 +02:00
Frederik Rietdijk 3f20baee54 python-packages pexpect: 2.3 -> 3.3
Tests worked.
2015-08-15 11:42:32 +02:00
Frederik Rietdijk 85ec308f8b python-packages setuptools_scm: 1.5.4 -> 1.7.0 2015-08-15 11:40:20 +02:00
Frederik Rietdijk f9e3908397 blaze: init at 0.8.2 2015-08-15 10:20:08 +02:00
Arseniy Seroka 8bdc291d8f Merge pull request #9253 from FRidh/pytest
python-packages pytest: 2.6.2 -> 2.7.2
2015-08-15 01:51:22 +03:00
Frederik Rietdijk dd1d6f8e27 python-packages pytest: 2.6.2 -> 2.7.2 2015-08-14 23:16:50 +02:00
Pascal Wittmann c73421b590 terminado: rename meta.licenses to meta.license 2015-08-14 22:40:07 +02:00
Shea Levy 8d44a74cfe Add seaborn python package 2015-08-14 09:13:05 -04:00
James ‘Twey’ Kay 326d179c67 Add Python package: plover-2.5.8 2015-08-14 00:57:56 +01:00
Rehno Lindeque 9109015990 pgcli: github owner changed from amjith to dbcli
The new location for pgcli is https://github.com/dbcli/pgcli (moved from https://github.com/amjith/pgcli)
2015-08-13 04:27:43 +00:00
Rehno Lindeque 4ddb8b18e0 pymysql: 0.6.3 -> 0.6.6 2015-08-13 04:06:14 +00:00
Shea Levy 466e9cc50d Add nipype and needed deps 2015-08-12 21:01:27 -04:00
Thomas Strobel 0bc1d05037 rencode python package: init at git 2015/08/10 2015-08-10 23:15:15 +02:00
Frederik Rietdijk 4f47002352 python-packages pyusb: 1.0.0b1 -> 1.0.0b2
Small update. Tested succesfully with `nox-review wip`

cc maintainer @bjornfor
2015-08-09 14:46:01 +02:00
Michael Raskin f383b2971c python-nbxmpp: 0.5.2 -> 0.5.3; needed for fresher Gajim 2015-08-08 21:01:31 +03:00
Jascha Geerds c17cc5a56a pythonPackages.praw: 2.1.21 -> 3.1.0 2015-08-07 14:16:47 +02:00
lethalman 3773a38e27 Merge pull request #8373 from lancelotsix/add_pythonPackages.pytsftp_package
Add the pythonPackages.pysftp derivation
2015-08-07 12:07:06 +02:00
Luca Bruno 20543fc792 python-cryptography: use older cffi. Closes #9157 2015-08-07 11:51:45 +02:00
Luca Bruno 462a667d5b pyinotify: disable on darwin 2015-08-07 11:27:06 +02:00
Lancelot SIX 39863c04ee pythonPackages.pysftp: init at 0.2.8 2015-08-07 08:58:44 +00:00
lethalman b38b70cc4d Merge pull request #9127 from FRidh/tornado4.2.1
python-packages tornado: 4.1 -> 4.2.1
2015-08-06 18:47:23 +02:00
Frederik Rietdijk d61fb8b9d2 python-packages tornado: 4.1 -> 4.2.1 2015-08-06 18:39:10 +02:00
Pascal Wittmann 9e065f2270 suds: disable for python3 2015-08-06 15:59:51 +02:00
vbgl 4d22b539b8 Merge pull request #9070 from danbst/tortoise-hg
new package: TortoiseHg and dependencies
2015-08-06 12:55:56 +02:00
lethalman 203e32e871 Merge pull request #9113 from dezgeg/pr-diffoscope
debbindiff: Rename to 'diffoscope' and update 26 -> 29 (plus some Python deps)
2015-08-06 11:53:26 +02:00
lethalman b1b681c853 Merge pull request #9134 from FRidh/numexpr2.4.3
python-packages numexpr: 2.4 -> 2.4.3
2015-08-06 11:44:50 +02:00
ts468 863fa55cc1 Merge pull request #9102 from ts468/upstream.e19
E19 update to 1.19.8
2015-08-06 09:02:17 +02:00
Frederik Rietdijk 51a5e01a40 python-packages numexpr: 2.4 -> 2.4.3 2015-08-05 22:33:41 +02:00
Thomas Strobel a8776cdc3d e19 update
efl: 1.14.1 -> 1.15.0
elementary: 1.14.1 -> 1.15.0
emotion: 1.14.0 -> 1.15.0
evas: 1.14.0 -> 1.15.0
enlightenment: 1.19.5 -> 1.19.8
pythonefl: 1.14.0 -> 1.15.0
2015-08-05 22:33:23 +02:00
Tobias Geerinckx-Rice 271392a3d1 python-packages: pgcli 0.19.0 -> 0.19.1
Bugfix for issue #317 ('traceback in completion on "selt *"').
2015-08-05 17:20:11 +02:00
Tobias Geerinckx-Rice c6edf3afab python-packages: pgcli 0.18.0 -> 0.19.0 2015-08-05 01:05:24 +02:00
Tobias Geerinckx-Rice c577886ac3 python-packages: prompt_toolkit 0.43 -> 0.45 2015-08-05 01:04:26 +02:00
Tobias Geerinckx-Rice 3dd5c80c53 python-packages: repocheck 2015-06-27 -> 2015-08-05 2015-08-05 00:57:04 +02:00
Bjørn Forsman 6b2c6bea0a python-sigal: 0.7.0 -> 0.9.2
Sigal has replaced argh with click, and now also depends on blinker.

Tested by generating an album (sigal init + build + serve).
2015-08-04 12:44:40 +02:00
Luca Bruno d30e63727f pyfribidi: disable on python 3 (ZHF) 2015-08-04 11:03:03 +02:00
Tuomas Tynkkynen 24f76a55d2 pythonPackages.libarchive-c: init at 2.1 2015-08-04 09:27:33 +03:00
Tuomas Tynkkynen 3a8d901ace pythonPackages.ssdeep: Init at 3.1.1 2015-08-04 09:27:33 +03:00
Thomas Bereknyei cb6dc71599 GateOne: init at 1.2 2015-08-03 11:01:05 -04:00
Lancelot SIX b867cc62a7 poezio: 0.8.1 -> 0.9 2015-08-03 09:31:21 +00:00
Lancelot SIX eda7843cab python34Packages.slixmpp: init at 1.0.post5 2015-08-03 09:30:27 +00:00
Lancelot SIX 44be36869f pythonPackages.aiodns: init at 0.3.2 2015-08-03 09:29:34 +00:00
Lancelot SIX f3a0fa9d96 pythonPackages.pycares: init at 0.7.0 2015-08-03 09:28:52 +00:00
Lancelot SIX 61ec424cd4 python33Packages.asyncio: init at 3.4.3 2015-08-03 09:28:11 +00:00
Arseniy Seroka 9771ff51f3 Merge pull request #9062 from odi/mps-youtube
python-packages: mps-youtube init version 0.2.5
2015-08-03 04:48:21 +03:00
Tobias Geerinckx-Rice a4e03fdc66 python-packages: click 3.3 -> 4.1 (redux)
This reverts:
  commit 389a0bf6cc
  commit 083ff50289

The nox-review failures were caused by a transient GitHub glitch that
merely happened to crash in click.
2015-08-01 00:57:11 +02:00
Sander van der Burg 831397f136 suds: add python package 2015-07-31 13:42:42 +00:00
Oliver Dunkl 5cd5c39915 python-packages: mps-youtube init at 0.2.5 2015-07-31 15:32:55 +02:00
Tobias Geerinckx-Rice 389a0bf6cc python-packages: re-add click 4.1 as separate attr 2015-07-31 02:46:06 +02:00
Tobias Geerinckx-Rice 083ff50289 Revert "python-packages: click 3.3 -> 4.1"
I *think* this might be breaking nox-review on Travis (but not here...)
Reverting to get Travis working ASAP until I figure out if that is so.

This reverts commit ba9a6e2d09.
2015-07-31 02:02:26 +02:00
danbst 3845b25623 pythonPackages.qscintilla: init at 2.9 2015-07-30 19:12:40 +00:00
Oliver Dunkl 8b71698c07 python-packages: pafy init version 0.3.74 2015-07-30 20:59:51 +02:00
danbst 3b59175c05 pythonPackages.iniparse: init at 0.4 2015-07-30 18:10:47 +00:00
Tobias Geerinckx-Rice ba9a6e2d09 python-packages: click 3.3 -> 4.1 2015-07-29 22:53:00 +02:00
Arseniy Seroka 82c53444e4 Merge pull request #9040 from lancelotsix/motuclient_change_homepage
motuclient: Change homepage
2015-07-29 22:00:01 +03:00
lethalman 5b3c3adce1 Merge pull request #9033 from kamilchm/qtile-pkg
qtile: init at 0.10.1
2015-07-29 12:04:48 +02:00
Lancelot SIX f936b3f6d9 motuclient: Change homepage 2015-07-29 09:52:05 +00:00
lethalman 5b10e4f3d6 Merge pull request #9030 from NarrativeScience/bump/pandas-16-2
pandas: 0.16.1 -> 0.16.2
2015-07-29 11:25:17 +02:00
Rob Vermaas 9430294114 Update awscli to 1.7.41 2015-07-29 09:08:51 +00:00
Kamil Chmielewski e610f27c43 qtile: init at 0.10.1 2015-07-28 22:55:32 +02:00
Allen Nelson 24868463ba pandas: 0.16.1 -> 0.16.2 2015-07-28 12:46:20 -05:00
Arseniy Seroka b5ca5cc0ce Merge pull request #8914 from desiderius/falcon-0.3.0
python-packages: falcon 0.2.0 -> 0.3.0
2015-07-28 14:05:58 +03:00
desiderius f7b283896b python-packages: falcon 0.2.0 -> 0.3.0 2015-07-27 09:14:18 +02:00
Tobias Geerinckx-Rice 1edef466c0 python-packages: prompt_toolkit 0.42 -> 0.43
New features:
- Added eventloop and patch_stdout parameters to get_input.
- Inputhook support added.
- Added ShowLeadingWhiteSpaceProcessor and ShowTrailingWhiteSpaceProcessor
  processors.
- Accept Filter as multiline parameter in 'shortcuts'.
- MultiColumnCompletionsMenu + display_completions_in_columns parameter
  in shortcuts.

Backwards incompatible changes (not used in nixpkgs):
- Layout.width was renamed to preferred_width and now receives a
  max_available_width parameter.
2015-07-25 02:33:44 +02:00
lethalman 63b1499996 Merge pull request #8903 from lancelotsix/add_pythonPacgages_netcdf4
pythonPackages.netcdf4: init at 1.1.8
2015-07-24 10:19:21 +02:00
Domen Kožar 554cbe9c4b scikitlearn: really use 0.16.1 version as noted in the name 2015-07-23 17:31:53 +02:00
Domen Kožar fb5ed0e6a1 Merge pull request #8944 from desiderius/elasticsearch-py.1.6.0
python-packages: update elasticsearch-1.4.0 to elasticsearch-1.6.0
2015-07-22 17:20:48 +02:00
desiderius e908c0c9da python-packages: update elasticsearch-1.4.0 to elasticsearch-1.6.0 2015-07-22 14:48:14 +02:00
Domen Kožar db22d387db Merge pull request #8946 from desiderius/elasticsearch-dsl-0.0.4
python-packages: update elasticsearch-dsl 0.0.3 to 0.0.4
2015-07-22 14:41:53 +02:00
desiderius 0d9d941d65 python-packages: update elasticsearch-dsl 0.0.3 to 0.0.4 2015-07-22 14:31:56 +02:00
Luca Bruno 63eccd2b2d pyutil: 1.7.9 -> 2.0.0. Fixes build failure (ZHF) 2015-07-21 16:26:47 +02:00
Luca Bruno 69afeeba32 mechanize: 0.1.11 -> 0.2.5 (ZHF). Old mechanize failed to build due to setuptools bump. 2015-07-21 11:03:11 +02:00
Domen Kožar e58cb1ec3b Merge pull request #8853 from lancelotsix/update_sqlalchemy
Update sqlalchemy
2015-07-20 23:08:51 +01:00
Lancelot SIX ce50f2b398 pythonPackages.netcdf4: init at 1.1.8 2015-07-20 10:58:49 +00:00
Charles Strahan 617c5fcaf0 rainbowstream: purify (close #8791)
This obviates the need for `cc` to be available at run time.
2015-07-20 10:06:17 +02:00
Matthias Beyer 8fa00ad16e pkginfo: init at 1.2.1 2015-07-19 13:37:08 +02:00
Vladimír Čunát 9f37e91ec5 Merge master into staging
There are larger-rebuild changes: gnutls and samba.
2015-07-17 06:38:04 +02:00
goibhniu f2ba10d15f Merge pull request #8807 from spencerjanssen/flexget-version
flexget: 1.2.278 -> 1.2.337
2015-07-16 22:56:16 +02:00
Lancelot SIX ff94a3f57e pythonPackages.alembic: 0.6.6 -> 0.7.6 2015-07-16 10:05:48 +00:00
Lancelot SIX f27b17e54c pythonPackages.sqlalchemy_1_0: init at 1.0.6
sqlalchemy-0.9.9 is maintained as the reference version (it is still in maintenance
state upstream).
2015-07-16 09:04:55 +00:00
Lancelot SIX c1a9be394f pythonPackages.sqlalchemy: 0.9.8 -> 0.9.9 2015-07-16 08:57:17 +00:00
Robert Scott ae2b537d68 update django minor versions (including security fixes) 2015-07-15 14:36:58 +00:00
William A. Kennington III 25e60feb72 Merge branch 'master.upstream' into staging.upstream 2015-07-15 02:02:46 -07:00
Lancelot SIX c930bf1f36 motuclient: init at 1.0.8 2015-07-15 10:24:21 +02:00
lethalman 6bf51d3a85 Merge pull request #8719 from lancelotsix/add_poezio
Add poezio
2015-07-14 14:56:55 +02:00
Spencer Janssen 05a8ad5a80 flexget: 1.2.278 -> 1.2.337 2015-07-13 17:17:35 -05:00
William A. Kennington III 333f145d76 Merge branch 'master.upstream' into staging.upstream 2015-07-13 15:11:31 -07:00
Peter Simons 41f3ff68b5 python-packages.nix: strip more trailing whitespace 2015-07-13 21:18:08 +02:00
Peter Simons daef191d8d python-packages.nix: strip trailing whitespace 2015-07-13 21:17:32 +02:00
Tobias Geerinckx-Rice ad00306e22 python-packages: odo: licenses.{bsd4 -> bsdOriginal} 2015-07-13 16:14:54 +02:00
lethalman c8e441c3a1 Merge pull request #8700 from lancelotsix/add_pep257_checker
Add pep257 checker
2015-07-13 15:11:58 +02:00
lethalman 45e07f5503 Merge pull request #8773 from FRidh/cython
cython: 0.20.1 -> 0.22.1
2015-07-13 15:07:32 +02:00
lethalman 319fc50ba5 Merge pull request #8742 from FRidh/pystache
pystache: init at 0.5.4
2015-07-13 14:51:59 +02:00
lethalman a0ec2fb74a Merge pull request #8743 from FRidh/colorama
colorama: 0.2.5 -> 0.3.3
2015-07-13 14:51:29 +02:00
lethalman 58adf1d604 Merge pull request #8765 from FRidh/odo
odo: init at 0.3.3
2015-07-13 13:49:54 +02:00
lethalman 5fde56e1b5 Merge pull request #8763 from FRidh/datashape
datashape: init at 0.4.6
2015-07-13 13:49:37 +02:00
lethalman 275bb071a7 Merge pull request #8737 from FRidh/multipledispatch
multipledispatch: init at 0.4.8
2015-07-13 13:48:14 +02:00
lethalman b30826ee49 Merge pull request #8771 from FRidh/terminado
terminado: init at 0.5
2015-07-13 13:40:20 +02:00
Pascal Wittmann c41809a4da Merge pull request #8754 from cheecheeo/tribler_update
Tribler update
2015-07-13 11:16:55 +02:00
Tuomas Tynkkynen 8655eb71af pythonPackages.debian: init at 0.1.23 2015-07-13 08:29:05 +02:00
Tuomas Tynkkynen 2ad7463144 pythonPackages.magic: Fix loading libmagic.so
Even with the previous `python.patch` file around, libmagic.so isn't
found. Instead patch it to use an absolute path, using a similar
approach that is used by the `python_magic` package (which is another
libmagic python wrapper library as well).
2015-07-13 08:29:05 +02:00
Frederik Rietdijk 3c5a6eb313 cython: 0.20.1 -> 0.22.1 2015-07-12 13:37:43 +00:00
Frederik Rietdijk 3a3062192c terminado: init at 0.5
A dependency for IPython 3.2 Notebook
2015-07-12 11:37:26 +00:00
Frederik Rietdijk c211a8aa59 ptyprocess: init at 0.5 2015-07-12 11:32:05 +00:00
Frederik Rietdijk df8d620bf3 odo: init at 0.3.3 2015-07-12 09:24:42 +00:00
Frederik Rietdijk 88c7e86706 datashape: init at 0.4.6 2015-07-12 09:00:13 +00:00
James Cook d384914a35 Merge pull request #8744 from FRidh/decorator
decorator: 3.4.0 -> 3.4.2
2015-07-12 00:07:55 -07:00
James Cook a16f77744a Merge pull request #8748 from devhell/rainbowstream-update
rainbowstream: 1.2.5 -> 1.2.7
2015-07-12 00:06:41 -07:00
James Cook b4e1254080 Merge pull request #8724 from oconnorr/master
cassandra-driver: fix package attribute name
2015-07-12 00:04:02 -07:00
John Chee f420f927f6 pythonPackages.gmpy2: init at 2.0.6 2015-07-11 15:06:23 -07:00
John Chee 21743decf3 pythonPackages.gmpy: init at 1.17 2015-07-11 15:05:32 -07:00
devhell b650fe3000 rainbowstream: 1.2.5 -> 1.2.7
Unfortunately I was unable to locate a changelog. This was built and run
locally to ensure the update works.
2015-07-11 17:08:42 +01:00
Frederik Rietdijk c88ec978db decorator: 3.4.0 -> 3.4.2 2015-07-11 14:11:24 +02:00
Frederik Rietdijk 2103633037 colorama: 0.2.5 -> 0.3.3 2015-07-11 10:22:22 +00:00
Frederik Rietdijk cb6edaca03 pystache: init at 0.5.4 2015-07-11 10:20:28 +00:00
Frederik Rietdijk 329c2b2e8b multipledispatch: init at 0.4.8 2015-07-11 11:15:59 +02:00
Lancelot SIX e1f2930213 poezio: init at 0.8.1 2015-07-10 22:40:49 +02:00
Pascal Wittmann 4977855101 pythonPackages.sipsimple: update from 2.4.0 to 2.5.0 2015-07-10 18:53:27 +02:00
Lancelot SIX 976e34cd6c python3Packages.sleekxmpp: init at 1.2.5 2015-07-10 08:04:06 +00:00
Lancelot SIX 2caa3b7d50 python3Packages.dnspython3: init at 1.12.0 2015-07-10 08:03:57 +00:00
Lancelot SIX 20f47e3abd pythonPackages.pytestpep257: init at 0.0.1 2015-07-10 07:53:24 +00:00
Lancelot SIX d9a4fc2df9 pythonPackages.pep257: init at 0.3.2
pep257 is a static analysis tool for checking compliance with Python PEP 257.
I stay with pep257-0.3.2 because newer versions does nos satisfy requirements
for pytest-pep257.
2015-07-10 07:47:15 +00:00
Russell O'Connor e4b583a5d0 cassandra-driver: fix package attribute name
Use a hyphen instead of camelCase.
2015-07-09 14:43:59 +00:00
Edward Tjörnhammar 0109c5a6fb pythonPackages.infoqscraper: init at 0.1.0 2015-07-09 13:07:32 +02:00
aszlig 9b8f66180f
python-hetzner: Update to bugfix version 0.7.3.
Fixes creating of admin accounts, which is used by NixOps to deploy new
servers. Props to @rbvermaa for reporting the issue and testing it with
NixOps.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-09 12:44:28 +02:00
William A. Kennington III 7cda24c01e Merge branch 'master.upstream' into staging.upstream 2015-07-08 14:11:16 -07:00
Tobias Geerinckx-Rice 0b6e9f38ca python-packages: pgcli 0.17.0 -> 0.18.0
Changes: https://raw.githubusercontent.com/dbcli/pgcli/master/changelog.rst
2015-07-08 17:13:04 +02:00
Arseniy Seroka f579662864 Merge pull request #8565 from oconnorr/master
cassandra-driver-2.6.0c2: new python package
2015-07-08 01:12:12 +03:00
aszlig b028c14256
python-wrapper: Fix variable name for sed expr.
Regression introduced by 5f55788531.

The commit not only changes documentation, but also changed a few
variable names. One of them is $i which now is $f and it contains the
name of the file to wrap.

This was accidentally found by @Profpatsch (thanks!) who found himself
getting the basename of the last patch file to end up in sys.argv[0].
The reason for this is that $i is used in the for loop of the generic
patchPhase and thus is reused later when the Python file is to be
wrapped.

I have also added a small comment noting about this, to be sure that
this won't accidentally occur the next time someone changes variable
names.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-07 18:25:10 +02:00
William A. Kennington III ae28ff8b91 Merge branch 'master.upstream' into staging.upstream 2015-07-06 17:15:11 -07:00
Leroy Hopson 040c399beb vultr: init at 0.1.2 2015-07-06 15:18:58 +12:00
William A. Kennington III fbfdc139d6 Merge branch 'master.upstream' into staging.upstream 2015-07-05 18:36:16 -07:00
William A. Kennington III 799c46e6e7 libvirt: 1.2.12 -> 1.2.17 2015-07-05 16:50:50 -07:00
William A. Kennington III d605663ae2 Merge branch 'master.upstream' into staging.upstream 2015-07-05 13:06:02 -07:00
Pascal Wittmann beffeedccf radicale: update from 0.9 to 0.10
add myself to maintainers
2015-07-05 21:12:50 +02:00
Bjørn Forsman 7f6667f979 python-namebench: bump 1.0.5 -> 1.3.1 2015-07-04 20:17:24 +02:00
Bjørn Forsman a7b6e152bb python-namebench: enable GUI support
tkinter apparently doesn't exist for pypy, hence it is disabled for that
interpreter.
2015-07-04 20:17:01 +02:00
Bjørn Forsman 8e4edf52dc python-namebench: fix error preventing it from starting
namebench expects to be run from its own source tree (it uses relative
paths to various resources), make it work.

The current version fails like this:

  $ ./result/bin/namebench.py
  Traceback (most recent call last):
    File "/nix/store/04d29llycr5xcxplfv4gn556nzm1mrl7-python2.7-namebench-1.0.5/bin/.namebench.py-wrapped", line 46, in <module>
      (options, supplied_ns, global_ns, regional_ns) = config.GetConfiguration()
    File "/nix/store/04d29llycr5xcxplfv4gn556nzm1mrl7-python2.7-namebench-1.0.5/lib/python2.7/site-packages/libnamebench/config.py", line 27, in GetConfiguration
      (configured_options, global_ns, regional_ns) = ProcessConfigurationFile(options)
    File "/nix/store/04d29llycr5xcxplfv4gn556nzm1mrl7-python2.7-namebench-1.0.5/lib/python2.7/site-packages/libnamebench/config.py", line 100, in ProcessConfigurationFile
      general = dict(config.items('general'))
    File "/nix/store/z6vp5aix4ks1zdjdry7v7dahg8dd02sy-python-2.7.10/lib/python2.7/ConfigParser.py", line 642, in items
      raise NoSectionError(section)
  ConfigParser.NoSectionError: No section: 'general'
2015-07-04 20:12:16 +02:00