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
8eac52d5c6
python-packages nipype
...
networkx works on py3k, however, nipype 0.10.0 doesn't. Upstream master
seems to work with py3k though.
2015-08-29 12:29:03 +02:00
Frederik Rietdijk
069a168e0c
networkx: 1.9.1 -> 1.10
...
Update to newer version.
Networkx supports py3k. Currently, networkx is broken on pypy though.
2015-08-29 12:27:58 +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
vbgl
3d70bd2763
Merge pull request #8635 from FRidh/patsy
...
patsy: init at 0.3.0
2015-07-04 17:37:37 +02:00
Frederik Rietdijk
be7dce488a
patsy: init at 0.3.0
2015-07-04 15:22:56 +02:00
Frederik Rietdijk
e0d32691a5
pytz: 2013.9 -> 2015.4
2015-07-04 13:55:03 +02:00
lethalman
8722e5453e
Merge pull request #8584 from robbinch/pkg-python-atomiclong
...
python-packages: Add atomiclong.
2015-07-04 13:22:27 +02:00
lethalman
2d49c104a3
Merge pull request #8623 from FRidh/cytoolz
...
cytoolz: init at 0.7.3
2015-07-04 13:08:15 +02:00
lethalman
39722b552e
Merge pull request #8622 from FRidh/toolz
...
toolz: init at 0.7.2
2015-07-04 13:07:16 +02:00
Asko Soukka
198ea49d8a
dot2tex: init at 2.9.0
2015-07-04 12:56:30 +03:00
Frederik Rietdijk
0a3e430e85
toolz: init at 0.7.2
2015-07-04 09:57:31 +02:00
Frederik Rietdijk
7aacf74cc7
cytoolz: init at 0.7.3
2015-07-04 09:56:36 +02:00
Tobias Geerinckx-Rice
dfdcbb3640
python-packages: prompt_toolkit 0.41 -> 0.42
2015-07-03 04:13:02 +02:00
Matthias Beyer
279057da8d
klaus: 0.4.9 -> 0.4.10
2015-07-01 20:47:04 +02:00
Robbin C
1969397ead
atomiclong: init at 0.1.1.
2015-07-01 22:31:34 +08:00
William A. Kennington III
612f0bdd67
Merge branch 'master.upstream' into staging.upstream
2015-06-30 23:58:07 -07:00
Russell O'Connor
90b4054aa0
cassandra-driver: init at 2.6.0c2
2015-06-30 17:47:04 +00:00
Carles Pagès
3dd09ed069
Merge pull request #8524 from cpages/master
...
abcde: update to 2.7 and fix mp3 tagging
2015-06-30 15:04:47 +02:00
Arseniy Seroka
3862fd57fe
Merge pull request #8526 from matthiasbeyer/add-klaus
...
Package: klaus + dependencies
2015-06-29 19:08:38 +03:00
Matthias Beyer
5344e4db4d
klaus: init at 0.4.9
2015-06-29 17:55:33 +02:00
Matthias Beyer
ce10f31e0e
httpauth: init at 0.2
2015-06-29 17:55:32 +02:00
Matthias Beyer
886a872853
humanize: init at 0.5.1
2015-06-29 17:55:32 +02:00
Pascal Wittmann
512225ef81
Fixed some descriptions
2015-06-29 16:20:58 +02:00
Tobias Geerinckx-Rice
d94285788f
python-packages: repocheck 2015-05-04 -> 2015-06-27
2015-06-29 01:21:17 +02:00
Kirill Elagin
6209961810
pyqt5: make it actually 5.4.2
2015-06-28 02:18:58 +03:00
Carles Pagès
658c8c5e38
eyeD3: fix and update to 0.7.8
2015-06-27 14:18:31 +02:00
William A. Kennington III
12102562f7
Merge branch 'master.upstream' into staging.upstream
2015-06-27 00:18:18 -07:00
William A. Kennington III
7297255019
Convert all jack references to libjack2
2015-06-27 00:17:52 -07:00
William A. Kennington III
ef253212f4
Merge branch 'master.upstream' into staging.upstream
2015-06-26 17:25:49 -07:00
Jude Taylor
616ed6ee15
darwin purity: libev
2015-06-26 09:53:10 -07:00
Rushmore Mushambi
ddade52f0e
Merge pull request #8501 from rushmorem/package-j2cli
...
Add j2cli package, a shell script templating helper
2015-06-25 16:36:52 +02:00
Lluís Batlle i Rossell
662a94312d
Fix python-json-pointer meta.
...
(cherry picked from commit f1f5441b50ea5ebf8df275bc76aef16f5e33d817)
2015-06-25 15:44:04 +02:00
rushmorem
fad9d34452
Add j2cli package, a shell script templating helper
2015-06-25 15:30:27 +02:00
Peter Simons
160e342dbd
python-args: drop bogus reference to "stdenv.lib.licenses.bsd"
2015-06-25 12:19:58 +02:00
Lluís Batlle i Rossell
66bd251a7c
Adding internetarchive 0.8.3.
2015-06-25 12:06:12 +02:00
Rok Garbas
2c944fd4dd
pythonPackages.jenkins-job-builder: init at 1.2.0
2015-06-24 12:37:11 +02:00
Peter Simons
4ad434e521
python-dulwich: update to version 0.10.1a
2015-06-24 11:37:30 +02:00
Peter Simons
c112c3f51f
hg-git: update to version 0.8.1
2015-06-24 11:33:17 +02:00
Michael Phillips
e17494956b
powerline: 2.1 -> 2.1.4, closes #8466
...
Makes powerline work again with tmux 2.0
2015-06-24 10:17:30 +02:00
Arseniy Seroka
2aac4c301c
Merge pull request #8469 from ehahn/qutebrowser
...
add packages: qutebrowser + dependency pypeg2
2015-06-23 17:22:26 +03:00
Tom Hunger
04f6a1c665
pandas: Update to 0.16.1, closes #8288
...
Note that I could remove the line-switching hack because
the problem has been fixed upstream:
https://github.com/fvia/pandas/commit/09a7a69e116
2015-06-23 13:54:19 +02:00
Erik Hahn
d9085b845e
pypeg2: init at 2.15.1
2015-06-23 13:39:23 +02:00
Tobias Geerinckx-Rice
30bda340f5
python-packages: prompt_toolkit -> 0.41
...
Fixes:
- Emacs Control-T key binding.
- Color fix for Windows consoles.
New features:
- Allow both booleans and Filters in many places.
- `password` can be a Filter now.
2015-06-21 22:37:18 +02:00
Travis B. Hartwell
f4d876f73c
i3-py: init at 0.6.4
...
Extract i3-py from i3minator so it can be installed on its own.
2015-06-20 23:31:38 -06:00
Leroy Hopson
108dbfba9a
openpyxl: init at 2.2.4
2015-06-20 12:53:04 +12:00
Leroy Hopson
9b623def11
jdcal: init at 1.0
...
a dependency of openpyxl
2015-06-20 12:53:04 +12:00
Jascha Geerds
9df19f6c0a
requests_toolbelt: 0.3.0 -> 0.4.0
2015-06-18 15:17:22 +02:00
Jascha Geerds
3b00ee2228
Add setuptools_scm package
2015-06-18 15:17:22 +02:00
Rok Garbas
3d2a2fdd6f
pythonPackages: pelican upgrade to 3.6.0 and added ghp-import package
...
- added ghc-import, smartypants and typogrify packages. last 2 needed as
a dependency for pelican buildInputs
- updated pelican to 3.6.0 and enable tests
- added myself (garbas) as maintainer to bunch of packages which I use.
- removed usage if python.isPypy and replace it with isPyPy
2015-06-17 17:55:53 +02:00
lethalman
ff3972b217
Merge pull request #8349 from berdario/ansible-win
...
Add support for Windows in ansible
2015-06-17 16:09:37 +02:00
Tobias Geerinckx-Rice
368e381d1f
python-packages: prompt_toolkit -> 0.40
...
Fixes:
- Fix in output_screen_diff: reset correctly.
- Ignore flush errors in vt100_output.
- Implemented <num>gg Vi key binding.
- Bug fix in the renderer when the style changes.
New features:
- TokenListControl can now display the cursor somewhere.
- Added SwitchableValidator class.
- print_tokens function added.
- get_style argument for Application added.
- KeyBindingManager got an enable_all argument.
Backwards incompatible changes:
- history_search is now a SimpleFilter instance.
2015-06-16 03:34:42 +02:00
Dario Bertini
32616ae028
Add pywinrm metadata
2015-06-15 19:45:49 +01:00
Dario Bertini
1c87fd82d4
Fix python-packages.nix conflict
...
Merge remote-tracking branch 'origin/master' into ansible-win
2015-06-15 19:41:30 +01:00
Dario Bertini
99912bbf0e
Add (optional, but opted in by default) support for Windows in ansible
2015-06-15 19:24:02 +01:00
Robert Scott
6fa931421e
add package for django-pipeline
2015-06-13 23:39:08 +02:00
Thomas Tuegel
2a2448bcb7
Merge pull request #8182 from ttuegel/openblas
...
Numerical computing overhaul
2015-06-12 08:06:03 -05:00
Thomas Tuegel
29db05132b
pythonPackages.cvxopt: build with openblas
2015-06-11 19:35:35 -05:00
Thomas Tuegel
bc3217251e
pythonPackages.scikitlearn: build with openblas
2015-06-11 19:23:25 -05:00
aszlig
d15777fac9
gyp: Remove old SVN version to build Chromium.
...
This reverts commit b26de39252
.
We no longer need this version because Chromium now builds with the
latest gyp version, see 58fd4f672f
.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-06-11 21:28:16 +02:00
Ambroz Bizjak
f3ca1cc238
gyp: 2015-05-17 -> 2015-06-11
2015-06-11 21:00:59 +02:00
Daiderd Jordan
fb19019af7
pythonPackages.trollius: disable the tests that fail on darwin
2015-06-11 16:24:10 +02:00
Daiderd Jordan
020f466ef4
disable tests for pythonPackages.trollius
2015-06-11 14:42:55 +02:00
Domen Kožar
8f28742315
Merge pull request #8251 from lancelotsix/fix_networkx
...
Fix pythonPackages.networkx
2015-06-11 11:24:40 +02:00
Domen Kožar
fdc83edd08
Removing python-packages-generated.nix
...
It was an experiment by @garbas in 2014 that has been forgotten
because of other, newer experiments.
Packages also weren't updated so we shouldn't let them rot in nixpkgs.
2015-06-11 10:42:15 +02:00
Rok Garbas
f2d7f573af
neovim: adding python2 and python3 support
...
neovim:
- possibility to extend neovim (via .override) and passing extraPythonPackages
or extraPython3Packages
- neovim's python interpreter can be found as nvim-python / nvim-python3
- wrapping nvim binary and setting `g:python_host_prog` and
`g:python3_host_prog` via --cmd flag
python-packages.nix fixes:
- ordereddict builds for py26 and uses disabled argument to tell this
- trollius builds on all python platforms except 3.4 (where is included in
standard librarary)
- neovim builds on all python platforms
2015-06-11 02:54:10 +02:00
Arseniy Seroka
c698c2709c
Merge pull request #8276 from k0ral/glances
...
glances: 2.3 -> 2.4.2
2015-06-11 01:41:46 +02:00
Mateusz Kowalczyk
1cc999e09d
Merge branch 'youtube-dl' of https://github.com/KaiSforza/nixpkgs
2015-06-11 00:36:00 +01:00
William Giokas
51ce297187
youtube-dl: make a python package
...
This allows youtube-dl to support all versions of python, and be built
correctly even when the python version is overridden by the user.
An alias to youtube-dl has been added which points to the default python
version's youtube-dl.
Also, ffmpeg has been made into an optional dependency. If ffmpeg is set
to 'null' then it will not be built and there will be no wrapper for it
either. An extra package, youtube-dl-light, is the same as youtube-dl
but without the ffmpeg dependency.
2015-06-10 15:50:17 -07:00
Rok Garbas
1c3585e411
pythonPackages.livestreamer: fix builds for py33 and py34
2015-06-11 00:06:52 +02:00
Rok Garbas
4970aa6f46
pythonPackages: fix apscheduler
2015-06-11 00:06:52 +02:00
Rok Garbas
adbed3fb6a
pythonPackages.neovim: new package added
2015-06-11 00:06:52 +02:00
koral
4387cd5841
glances: 2.3 -> 2.4.2
2015-06-10 17:16:31 +00:00
Lancelot SIX
7a87a1e73f
Fix pythonPackages.networkx
2015-06-09 20:49:24 +02:00
Jaka Hudoklin
8b79a09f78
Merge pull request #7553 from offlinehacker/pkgs/python-packages/graphite-beacon
...
Add graphite beacon package and module
2015-06-08 12:17:01 +02:00
Tobias Geerinckx-Rice
09b95b88a5
python-packages: add buttersink 0.6.6
2015-06-08 01:19:07 +02:00
Tobias Geerinckx-Rice
8c0389ac01
python-packages: prompt_toolkit -> 0.39
...
Fixes:
- Fixed layout.py example.
- Fixed eventloop for Python 64bit on Windows.
- Fix in history.
- Fix in key bindings.
2015-06-06 12:28:48 +02:00
desiderius
daf0e6500d
python-packages: updates pyinotify 0.9.3 to 0.9.5
2015-06-05 09:20:46 +02:00
William A. Kennington III
04f0ab105c
Merge pull request #8105 from codyopel/beets
...
Updated Beets and dependenecies
2015-06-04 23:59:14 -07:00
Thomas Tuegel
bfe106cfa6
Build numpy and scipy with openblas
...
Fixes #6772 .
2015-06-04 17:44:31 -05:00
Allen Nelson
8bf170f280
Remove lingering dependence on atlas with numpy.
...
Closes https://github.com/NixOS/nixpkgs/pull/8133 .
2015-06-04 20:07:41 +02:00
Peter Simons
f1587a2d1e
Move numpy-scipy-support.nix file from the top-level to development/python-modules.
...
The top-level is not supposed to contain sub-directories, IMHO.
2015-06-04 19:59:46 +02:00
Cillian de Róiste
4938d89272
Merge pull request #8168 from richardlarocque/loxodo_app_rebase
...
Move Loxodo package and add an icon
2015-06-04 11:26:04 +02:00
Domen Kožar
eb9874389b
Merge pull request #8079 from adnelson/pandas_osx
...
supporting pandas on osx, added test suite
2015-06-04 10:29:01 +02:00
Richard Larocque
472642ebff
Make Loxodo into a real package
...
There's no reason to keep it hidden in python27Packages hierarchy.
Promote it to be a top-level package.
2015-06-03 23:43:00 -07:00
Allen Nelson
560d52f51e
switched to python.executable
2015-06-03 15:45:57 -05:00
lethalman
d144ece04e
Merge pull request #8127 from ip1981/mwlib
...
Add more dependencies for mwlib
2015-06-03 12:50:02 +02:00
Igor Pashev
95c6b835cb
mwlib may use pyfribidi
2015-06-02 06:14:34 +00:00
Allen Nelson
23b1950603
switch to sha256 hashes
2015-06-01 08:43:53 -05:00
codyopel
cdf49bb47a
requests2: 2.6.0 -> 2.7.0
2015-05-31 22:47:31 -04:00
codyopel
f70582e334
responses: 0.2.2 -> 0.4.0
2015-05-31 22:42:53 -04:00
codyopel
b4a99530d1
cookies: add python package
2015-05-31 22:39:02 -04:00
Tobias Geerinckx-Rice
8c4bf0f931
python-packages: prompt_toolkit 0.37 -> 0.38
2015-06-01 04:04:33 +02:00
Allen Nelson
2ba1ab3ad1
supporting pandas on osx, added test suite
2015-05-30 20:11:59 -05:00
Peter Simons
76da869d9a
Merge pull request #8045 from adnelson/numpy_scipy_osx
...
Test suites and working OSX builds for numpy and scipy
2015-05-30 19:26:31 +02:00
Allen Nelson
18bb7a4047
fix undefined variable
2015-05-29 11:05:34 -07:00
Allen Nelson
6c238d1d5f
moving non-packages into a separate file
2015-05-29 11:12:55 -05:00
Shea Levy
eb0a21a512
boto: Remove obsolete patch
2015-05-29 11:21:49 -04:00
Domen Kožar
7ddb84055c
Merge pull request #8048 from Bsami/remotes/origin/python2.38.0
...
Remotes/origin/python2.38.0
2015-05-29 08:52:29 +02:00
Allen Nelson
3d00848ace
using atlasWithLapack dependency. running test suites for numpy and scipy.
2015-05-29 00:06:57 -05:00
Sami BOUHLEL
fb310a6998
added support for boto 2.38.0
2015-05-28 21:15:16 +01:00
Sami BOUHLEL
385936f7d9
added support for boto 2.38.0
2015-05-28 20:53:57 +01:00
Tobias Geerinckx-Rice
158e1cfdd0
Don't use "with licenses;" for single licences
...
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00
Bjørn Forsman
201059f728
python-pyev: new package
...
Python bindings for the libev library.
https://code.google.com/p/pyev/
2015-05-27 23:00:09 +02:00
Tobias Geerinckx-Rice
b2d7f4b1ba
Use common licence attributes from lib/licenses.nix
...
Many (less easily automatically converted) old-style strings
remain.
Where there was any possible ambiguity about the exact version or
variant intended, nothing was changed. IANAL, nor a search robot.
Use `with stdenv.lib` wherever it makes sense.
2015-05-27 22:00:06 +02:00
Siarhei Zirukin
4fd635404d
e19: updates for 1.14.0
...
- libraries and applications updated to the latest
- the "elementary getting started" (https://docs.enlightenment.org/auto/elementary/group__Start.html )
works with just `pkg-config --cflags --libs elementary`
- switched from lua-old to elua
2015-05-27 20:06:06 +02:00
lethalman
71fc9aac4d
Merge pull request #7992 from ip1981/mwlib
...
Added mwlib services
2015-05-27 16:59:57 +02:00
Igor Pashev
d88f704516
Pillow requires lcms2 with python2.7 too
2015-05-27 14:55:22 +00:00
Tobias Geerinckx-Rice
60461dee1c
python-packages: pyramid_tm: re-enable checks
...
Tested on x86_64-linux.
If tests still fail elsewhere, disable them (per platform?) with a
more descriptive and up-to-date comment.
2015-05-27 01:37:43 +02:00
Tobias Geerinckx-Rice
2af3773342
python-packages: webtest: unittest2 is a Python package
2015-05-27 01:24:04 +02:00
Tobias Geerinckx-Rice
3f4bdb8ee0
python-packages: prompt_toolkit 0.26 -> 0.37
2015-05-26 16:36:17 +02:00
Tobias Geerinckx-Rice
184682d4d3
python-packages: pgcli 0.16.3 -> 0.17.0
...
New features:
- Add support for auto-completing view names
- Add support for building RPM and DEB packages
- Add subsequence matching for completion
- Completion for built-in tables and temporary tables are suggested after
entering a prefix of pg_
- Add place holder doc strings for special commands that are planned for
implementation
- Updated version of prompt_toolkit, now matching braces are highlighted
- Added support of \\e command. Queries can be edited in an external editor
- Add special command \dT to show datatypes
- Add auto-completion support for datatypes in CREATE, SELECT etc
- Improve the auto-completion in WHERE clause with logical operators
Bug Fixes:
- Fix the table formatting while printing multi-byte characters
- Fix a crash when pg_catalog was present in search path
- Fixed a bug that broke \e when prompt_tookit was updated
- Fix the display of triggers as shown in the \d output
- Fix broken auto-completion for INNER JOIN, LEFT JOIN etc
- Fix incorrect super() calls in pgbuffer, pgtoolbar and pgcompleter
- Add missing schema completion for CREATE and DROP statements
- Minor fixes around cursor cleanup
2015-05-26 16:20:52 +02:00
Tobias Geerinckx-Rice
3a61b7fca3
python-packages: clean up meta attribute
...
- Typos: meta.maintainer -> meta.maintainers, licences -> license, ...
- Remove unnecessary stdenv.lib (already in scope for entire file)
- [ maintainers.foo maintainers.bar ] -> with maintainers; [ foo bar ]
Doing so even for single-maintainer packages makes it slightly
more inviting to add others, which can only be a good thing.
2015-05-26 11:54:12 +02:00
William A. Kennington III
2ce464dbe9
Merge pull request #7923 from joelmo/patch-4
...
rpy2: disable pypy
2015-05-23 22:54:05 -07:00
Benjamin Staffin
50cb206cd5
awscli: update to 1.7.29
...
Includes updates to bcdoc and botocore.
2015-05-23 18:29:44 -07:00
Domen Kožar
42d9fe8b09
gevent: 1.0.1 -> 1.0.2
2015-05-23 14:30:49 +02:00
Mateusz Kowalczyk
815f85edfd
python-livestreamer: update to 1.12.2
2015-05-23 01:40:19 +01:00
Arseniy Seroka
f06ec43e8b
Merge pull request #7946 from couchemar/isort-3.9.6
...
Add python package: isort-3.9.6
2015-05-22 20:04:03 +03:00
Andrey Pavlov
e32332b9b5
Add python package: isort-3.9.6
2015-05-22 19:11:27 +03:00
aszlig
b26de39252
gyp: Revive old SVN version to build Chromium.
...
Works around regression from a305e6855d
.
We're also marking it lowPrio to make sure nobody will accidentally
reference it using nix-env -i.
Until we have fixed #7402 , we're going to build with the old gyp version
to prevent being affected by https://crbug.com/462153 .
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-05-22 11:37:40 +02:00
Joel Moberg
a0d3e234ec
rpy2: disable pypy
2015-05-21 13:59:58 +02:00
codyopel
a305e6855d
gyp: svn-1977 -> 2015-05-17
2015-05-21 05:06:54 -04:00
Evgeny Egorochkin
d6a8bdcdc6
azure sdk for python: update from 0.9.0 to 0.11.0
...
Conflicts:
pkgs/top-level/python-packages.nix
2015-05-20 13:24:39 +03:00
Peter Simons
51412f96c0
Merge pull request #7886 from joelmo/numpy
...
numpy and matplotlib updates
2015-05-19 13:16:11 +02:00
Joel Moberg
7bc00dbdaf
numpy: 1.8.2 -> 1.9.2
2015-05-18 11:25:56 +02:00
Daniel Peebles
ec69293f05
Merge pull request #7516 from joelmo/rpy2
...
rpy2: initial
2015-05-17 15:42:19 -04:00
Domen Kožar
f26476f7d4
Merge pull request #7871 from joelmo/scipy
...
scipy: 0.14.0 -> 0.15.1
2015-05-17 17:59:33 +02:00
Joel Moberg
8c1dfabdce
rpy2: initial
2015-05-17 15:48:13 +02:00
Joel Moberg
1c678fdcf3
scipy: 0.14.0 -> 0.15.1
...
Fixes #7870
2015-05-17 15:12:27 +02:00
Domen Kožar
3efefb5baa
greenlet: delete problematic test
2015-05-16 20:56:53 +02:00
Domen Kožar
4c67102a59
pythonPackages.greenlet: 0.4.5 -> 0.4.7
2015-05-16 20:34:40 +02:00
Michael Phillips
9579fecd28
pyblosxom: new package
2015-05-15 00:47:46 -05:00
Tobias Geerinckx-Rice
f0764dd632
python-packages: SQLAlchemy: skip tests on Py3k
...
They would fail anyway, blocking all dependents for the sake of
a mere test dependency.
2015-05-12 18:13:05 +02:00
Tobias Geerinckx-Rice
8549e0cc99
Revert "python-packages: SQLAlchemy: build"
...
This reverts commit 6e8d1f84f2
.
pysqlite is not available for Python 3. Adding it to buildInputs
makes all packages dependent upon sqlalchemy equally unavailable
for no good reason.
2015-05-12 18:13:05 +02:00
Pascal Wittmann
88fbc8a0da
Merge pull request #7809 from desiderius/attrdict-2.0.0
...
python-packages: new attrdict-2.0.0 package
2015-05-12 17:25:28 +02:00
desiderius
1fe0ebc0ec
python-packages: new attrdict-2.0.0 package
...
A dict with attribute-style access.
2015-05-12 10:27:30 +02:00
Peter Simons
430c3e08b4
python-SQLAlchemy: the buildInput attributes in the derived expressions are unnecessary
2015-05-12 00:35:13 +02:00
Peter Simons
ea0c877858
python-SQLAlchemy: test suite dependencies don't need to propagate
2015-05-11 23:36:13 +02:00
Peter Simons
b37e68b09f
python-packages.nix: fix Emacs syntax highlighting
2015-05-11 23:26:32 +02:00
Peter Simons
d9e83b77a6
python-packages.nix: drop trailing whitespace
2015-05-11 23:26:32 +02:00
Peter Simons
1eec4a4a10
python-SQLAlchemy: add pysqlite module to fix the test suite
...
http://hydra.cryp.to/build/817910/nixlog/1/raw
2015-05-11 23:26:31 +02:00
Tobias Geerinckx-Rice
6e8d1f84f2
python-packages: SQLAlchemy: build
...
Fix test failure by adding pysqlite dependency (buildInputs only).
2015-05-11 23:12:09 +02:00
Domen Kožar
5c6f159cd5
subunit: split package into everything and python lib
2015-05-10 13:46:30 +02:00
Domen Kožar
4827deaf00
pythonPackages: a bunch of build fixes
2015-05-10 13:46:30 +02:00
Erik Timan
d57a93f04b
python-packages: icalendar 3.8.4 -> 3.9.0
...
dateutil is a new depencency for icalendar 3.9.0.
2015-05-10 13:46:02 +02:00
Erik Timan
7dbe0ff77b
python-packages: disable older than 2.7 for azure
2015-05-10 13:46:02 +02:00
Erik Timan
34b50b6765
python-packages: azure 0.10.0 -> 0.10.2
2015-05-10 13:46:02 +02:00
rushmorem
a7a0fcfbd2
Add s3ql package
...
S3QL is a file system that stores all its data online using storage
services like Google Storage, Amazon S3, or OpenStack. S3QL effectively
provides a hard disk of dynamic, infinite capacity that can be accessed
from any computer with internet access running Linux, FreeBSD or OS-X.
2015-05-10 13:46:01 +02:00
koral
81549b0136
Added jellyfish python package.
2015-05-10 13:46:00 +02:00
Domen Kožar
90ee280913
subunit: split package into everything and python lib
2015-05-10 11:39:42 +02:00
Domen Kožar
7142d47991
pythonPackages: a bunch of build fixes
2015-05-10 10:11:29 +02:00
Domen Kožar
7bda733f8b
Merge pull request #7782 from olcai/python-azure
...
python-packages: azure 0.10.0 -> 0.10.2
2015-05-10 09:18:34 +02:00
Erik Timan
f541c61e22
python-packages: icalendar 3.8.4 -> 3.9.0
...
dateutil is a new depencency for icalendar 3.9.0.
2015-05-09 23:33:12 +02:00
Erik Timan
8d8c7c3600
python-packages: disable older than 2.7 for azure
2015-05-09 20:02:40 +00:00
Erik Timan
b884826d15
python-packages: azure 0.10.0 -> 0.10.2
2015-05-09 19:32:32 +00:00
Arseniy Seroka
a360ce48ec
Merge pull request #7774 from rushmorem/s3ql
...
Add s3ql package
2015-05-09 17:41:06 +03:00
rushmorem
cd11803aa1
Add s3ql package
...
S3QL is a file system that stores all its data online using storage
services like Google Storage, Amazon S3, or OpenStack. S3QL effectively
provides a hard disk of dynamic, infinite capacity that can be accessed
from any computer with internet access running Linux, FreeBSD or OS-X.
2015-05-09 16:28:11 +02:00
koral
ea9969b0e4
Added jellyfish python package.
2015-05-09 09:10:47 +00:00