Commit Graph

1990 Commits

Author SHA1 Message Date
Guillaume Maudoux 637097a142 python-simpleldap: init at 0.8 2015-08-31 18:27:20 +02:00
Guillaume Maudoux 00abee22be python-multiprocessing: init at 2.6.2.1 2015-08-31 18:27:19 +02:00
Guillaume Maudoux 0db8e6c792 python-PyLTI: init at 0.4.0 2015-08-31 18:27:19 +02:00
Guillaume Maudoux 96a1539256 python-cgroup-utils: init at 0.6 2015-08-31 18:27:19 +02:00
Guillaume Maudoux 73c61b6286 python-sh: update 1.08 -> 1.11 2015-08-31 18:26:44 +02:00
Guillaume Maudoux 579424f94a python-PyYAML: update 3.10 -> 3.11 2015-08-31 18:26:43 +02:00
Guillaume Maudoux ba3e4f6c10 python-pymongo: update 2.8 -> 3.0.3 2015-08-31 18:26:43 +02:00
Guillaume Maudoux a57e6da65a python-plumbum: update 1.4.2 -> 1.5.0 2015-08-31 18:26:43 +02:00
Tobias Geerinckx-Rice e3a93b6e9a python-packages: mycli 1.3.0 -> 1.4.0
Remove now unused prompt_toolkit0_45, and pull the unversioned
attribute back to release 0.46 until dependents catch up.
2015-08-31 17:17:32 +02:00
Tobias Geerinckx-Rice 42f329e841 python-packages: pgcli 0.19.1 -> 0.19.2 2015-08-31 17:17:31 +02:00
Tobias Geerinckx-Rice 5d6323817c python-packages: sqlparse 0.1.14 -> 0.1.16 2015-08-31 17:17:31 +02:00
Peter Simons 77f18a152b Merge pull request #9574 from rnhmjoj/pirate-get
pirate-get: init at 0.2.7
2015-08-31 15:43:56 +02:00
Arseniy Seroka fc1165b0d9 Merge pull request #9550 from mbakke/pbr-1.6
pbr: 0.9.0 -> 1.6.0
2015-08-31 16:22:22 +03:00
rnhmjoj 5553280940 pirate-get: init at 0.2.7 2015-08-31 13:04:20 +00:00
Marius Bakke 1869b8f213 stevedore: 0.15 -> 1.7.0 2015-08-31 12:42:22 +01:00
Marius Bakke 642a10df0e oslosphinx: init at 3.1.0 2015-08-31 12:41:59 +01:00
Marius Bakke f5f24ce884 pbr: 0.9.0 -> 1.6.0 2015-08-31 12:40:54 +01:00
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