Commit graph

4825 commits

Author SHA1 Message Date
Frederik Rietdijk 632a62a8c0 pythonPackages.asn1crypto: init at 0.22.0 2017-04-18 12:03:45 +02:00
Frederik Rietdijk 5cc79b9624 pythonPackages.idna: 2.0 -> 2.5 2017-04-18 12:03:45 +02:00
Frederik Rietdijk a7f6911b37 pythonPackages.dask: 0.13.0 -> 0.14.1 2017-04-18 12:03:44 +02:00
Frederik Rietdijk f225ffa397 pythonPackages.magic: fix package, closes #16361 2017-04-18 11:33:22 +02:00
Frederik Rietdijk 8cc5530a73 pythonPackages.qtconsole: use pyqt5 backend
instead of pyqt4 which required building qt4.
2017-04-18 11:21:20 +02:00
Taahir Ahmed 3efdf24584 htmlmin: init at 0.1.10 (#24945) 2017-04-17 09:50:57 +01:00
Taahir Ahmed f029fc8cdc csscompressor: init at 0.9.4 (#24946) 2017-04-17 09:49:43 +01:00
zraexy ab031bf9b7
pythonPackages.iso3166: init at 0.8 2017-04-17 01:24:28 +02:00
zraexy 62b1bd180f
pythonPackages.iso-639: init at 0.4.5 2017-04-17 01:24:27 +02:00
Vladimír Čunát 2090aa4f65
Merge: fixup a bad merge
For details see:
https://github.com/NixOS/nixpkgs/commit/24444513fb5#commitcomment-21767916
2017-04-14 19:11:17 +02:00
Frederik Rietdijk 46403f57b0 Merge pull request #24841 from loskutov/bleech-unix
pythonPackages.bleach: declare unix support
2017-04-14 14:58:47 +02:00
Ignat Loskutov 31a28a38a1 pythonPackages.bleach: remove the 'platforms' attribute; update homepage 2017-04-14 15:56:54 +03:00
Vladimír Čunát 24444513fb
Merge branch 'staging' 2017-04-14 10:32:13 +02:00
Robert Helgesson 034ea00b98
pythonPackages.PyICU: 1.9.5 -> 1.9.6 2017-04-13 20:45:41 +02:00
Jörg Thalheim 300c59c7fc Merge pull request #24865 from mucaho/conan
conan: init at 0.21.2
2017-04-13 10:34:11 +02:00
Daniel Peebles f21a6940da Merge pull request #24838 from matthewbauer/ibtool
pinentry_mac: use xcbuild
2017-04-12 22:20:57 -04:00
mucaho fe2ced1ea8 pythonPackages.node-semver: init at 0.1.1 2017-04-13 03:10:57 +02:00
mucaho acf45e0f9c pythonPackages.pluginbase: init at 0.5 2017-04-13 03:10:10 +02:00
Fernando J Pando 80c295f50f pythonPackages.distro: init 1.0.3
- tested on darwin
- tested on nixos
2017-04-13 00:01:30 +02:00
Tristan Helmich cf957fedea pythonPackages.phonenumbers: init at 8.4.0 2017-04-12 01:58:28 +02:00
Bjørn Forsman 6047401a71 pythonPackages.boto3: disable tests (fails due to network access)
The test failure started happening with commit
8d18f67a97 ("awscli: 1.11.45 -> 1.11.75"). That commit
also updates botocore, a dependency of boto3.

This unbreaks 'nixops' (a dependee).
2017-04-11 19:14:56 +02:00
Lancelot SIX 54fff9ec1a Merge pull request #24780 from cko/django_1_7_remove
django_1_7: remove
2017-04-11 17:45:21 +02:00
aszlig 49cf934642
pyocr: Add patch to support Tesseract 3.05.00
This is from the commit message I've written for the upstream pull
request (jflesch/pyocr#62):

    This is a bit more involved, because Tesseract 3.05.00 comes not
    only with improvements but also with a few quirks we need to deal
    with.

    The first quirk is that the order arguments of the `tesseract'
    command now matters and the list of configurations has to be at the
    end of the command line. So we add a new attribute tesseract_flags
    to the BaseBuilder class that contains a list of all the flags to
    pass to `tesseract', the tesseract_configs attribute however remains
    pretty much the same but now only really contains a list of configs
    instead of being mixed with flag arguments.

    Another quirk has to do with Leptonica >= 1.74 which Tesseract
    3.05.00 now requires. Leptonica has special handling of files that
    reside in /tmp and assumes that it's an internal temporary file of
    Leptonica. In order to deal with it, we now run Tesseract in a
    temporary directory, which contains the input/output files and use
    the relative name of these files because Leptonica only searches for
    path names beginning with /tmp.

    Fortunately the last item we need to address is not really a quirk,
    but an API change. In Tesseract 3.05.00 there is now a new function
    called TessBaseAPIDetectOrientationScript(), which doesn't fill the
    OSResults object anymore but now allows to pass the values we're
    interested in directly by reference. We need to use this new
    function because the old function TessBaseAPIDetectOS() now *always*
    returns false.

I've tested this specifically on NixOS and in conjunction with Paperwork
(the only package that's using pyocr so far) and all the tests of the
dependency chain are now succeeding. However, I didn't do manual tests
of Paperwork though.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:39 +02:00
aszlig 121751e10f
pyocr: 0.4.4 -> 0.4.6
Upstream changes for version 0.4.5:

 * Clean up exceptions raised when OCR fails:
 * Now, all tools raise only exceptions inheriting from
   pyocr.PyocrException
 * There is now one and only one TesseractError (shared between
   pyocr.libtesseract and pyocr.tesseract)

Upstream changes for version 0.4.6:

 * hOCR outputs: Generate valid XHTML files

The full upstream changelog can be found at:

https://github.com/jflesch/pyocr/blob/master/ChangeLog

Note that because of the version bump of Tesseract neither version 0.4.4
nor version 0.4.6 succeed to build, so we need to fix this up soon.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:36 +02:00
Lorenzo Manacorda 8d18f67a97 awscli: 1.11.45 -> 1.11.75
also update dependency botocore
2017-04-10 18:56:06 +02:00
Christine Koppelt b3eeca06c9 django_1_7: remove 2017-04-10 15:25:32 +02:00
Matthew Bauer a78af29ae7
install_name_tool: remove
cctools provides install_name_tool
2017-04-09 04:22:44 -05:00
Lancelot SIX c6bc54e319
pythonPackages.django_1_8: 1.8.17 -> 1.8.18
This is a security release. See
https://www.djangoproject.com/weblog/2017/apr/04/security-releases/
2017-04-06 14:46:03 +02:00
Lancelot SIX 3f401926f9
pythonPackages.django_1_9: 1.9.12 -> 1.9.13
This is a security release. See
https://www.djangoproject.com/weblog/2017/apr/04/security-releases/
2017-04-06 14:43:25 +02:00
Matthew Maurer d022b4419c bap-python: init at 1.1.0 2017-04-04 13:11:06 -04:00
Vladimír Čunát 40628d9ed8
Merge #22873: updates of various python packages 2017-04-01 19:26:40 +02:00
Frederik Rietdijk 30449c5e36 Merge pull request #24439 from amosbird/master
Fix xgboost python 2.7 build.
2017-03-29 18:20:14 +02:00
Rob Vermaas 35dfdc9277
dd-agent: fix by adding uptime as dependency.
(cherry picked from commit f79be2cfa321617314aa253a8a6341a2f0ab7816)
2017-03-29 14:56:01 +00:00
Amos Bird 94c61cee66 Fix xgboost python 2.7 build. 2017-03-29 18:02:31 +08:00
Franz Pletz c17ff91221
pythonPackages.libtmux: 0.6.0 -> 0.6.4 2017-03-28 20:14:19 +02:00
Franz Pletz 805d53ecdb
pythonPackages.click: 6.6 -> 6.7 2017-03-28 20:14:19 +02:00
Michael Weiss 6ce0af295d python-gnupg: 0.3.8 -> 0.4.0 and disable tests
All 20 tests did fail because no gpg binary was found. With gnupg1 as
build input they never finish. Deactivating them might be the best
option for now (and it improves the current situation since they never
actually succeeded anyway -> build was failing, I noticed this while
running nox-review for #24390).
2017-03-28 01:34:13 +02:00
Franz Pletz 1b95985b71 Merge pull request #24148 from volth/libvirt-3.1.0
libvirt: 3.0.0 -> 3.1.0
2017-03-27 10:02:06 +02:00
Frederik Rietdijk fffb511607 Merge pull request #24208 from lsix/update_django_1_10
pythonPackages.django: 1.10.5 -> 1.10.6
2017-03-26 09:43:41 +02:00
Volth 1cca97cf18
libvirt: 3.0.0 -> 3.1.0 2017-03-25 14:54:16 +01:00
goibhniu efc457c6e2 Merge pull request #23251 from juliendehos/hieroglyph
hieroglyph: init at 0.7.1
2017-03-25 13:00:34 +01:00
Vladimír Čunát 455ce3528c
Merge branch 'staging' 2017-03-24 21:07:55 +01:00
Frederik Rietdijk f4a1eab239 Merge pull request #23863 from plumps/add-vulnix
vulnix: init at 1.2.2
2017-03-24 11:12:50 +01:00
Jörg Thalheim 70322d8b87 pythonPackages.BTrees: 4.1.4 -> 4.3.1 2017-03-24 10:44:34 +01:00
Vladimír Čunát c1a9dc3d37
Merge branch 'master' into staging 2017-03-23 13:31:28 +01:00
Ricardo Ardissone ec95007936 pythonPackages.worldengine: enable testing 2017-03-23 00:22:16 -03:00
Nick Hu a185b1267f proselint: disable tests and put in correct scope 2017-03-22 18:03:38 +00:00
Lancelot SIX d284e37a59
pythonPackages.django: 1.10.5 -> 1.10.6
This is a bugfix release.
2017-03-22 15:49:00 +01:00
Franz Pletz 1dadbe7e27
pythonPackages.searx: update version bounds of dateutil 2017-03-22 15:05:30 +01:00
Ricardo Ardissone a431dd265c pythonPackages.worldengine: init at 0.19.0 2017-03-22 03:31:12 -03:00
Ricardo Ardissone 311da64a0b pythonPackages.purepng: init at 0.2.0 2017-03-22 03:22:57 -03:00
Ricardo Ardissone 47d1e698a9 pythonPackages.pyplatec: init at 1.4.0 2017-03-22 03:22:55 -03:00
Ricardo Ardissone 15d43bb0c1 pythonPackages.noise: init at 1.2.2 2017-03-22 03:22:54 -03:00
Nikolay Amiantov 6f884349e6 python.pkgs.websocket_client: 0.32.0 -> 0.40.0 2017-03-21 20:22:26 +03:00
Nikolay Amiantov c7ee41bc13 python.pkgs.sockjs-tornado: init at 1.0.3 2017-03-21 20:22:26 +03:00
Jörg Thalheim 64218457c4
pythonPackages.podcastparser: init at 0.6.1 2017-03-21 17:06:05 +01:00
Frederik Rietdijk 94eb74eaad Merge remote-tracking branch 'upstream/master' into HEAD 2017-03-21 13:04:37 +01:00
Frederik Rietdijk 3760c8c7fd Python: replace mkPythonDerivation with buildPythonPackage and format="other";
This way all Python packages use the same function,
`buildPythonPackage`.
2017-03-21 13:01:49 +01:00
Eelco Dolstra 5897aa771c
system-config-printer: Remove -dev paths from closure
Workaround for #24128.
2017-03-20 17:31:26 +01:00
Jörg Thalheim 8490317fef Merge pull request #24020 from xvapx/add/libnacl-1.5.0
pythonPackages.libnacl: init at 1.5.0
2017-03-19 21:02:03 +01:00
Jörg Thalheim 597865725f
pythonPackages.libnacl: enable tests 2017-03-19 20:59:17 +01:00
Marti Serra c883cefc6f pythonPackages.libnacl: init at 1.5.0 2017-03-19 20:11:50 +01:00
Michael Raskin 16fff5ebce pylibmc: init at 1.5.1; patch by @risicle 2017-03-18 23:09:20 +01:00
Michael Raskin 5acc9eeaca Merge pull request #24009 from stebulus/spambayes-bsddb-dep
spambayes: Add bsddb3 build input
2017-03-18 20:27:17 +01:00
Michael Raskin c320267cf8 Merge pull request #23934 from rvl/python-zeep
pythonPackages.zeep: init at 1.1.0
2017-03-18 19:59:45 +01:00
Michael Raskin b9683c2155 Merge pull request #23436 from lsix/update_dateutil
pythonPackages.dateutil: 2.5.3 -> 2.6.0
2017-03-18 18:44:40 +01:00
Michael Raskin f2bba743fb Merge pull request #23283 from alibabzo/init/proselint
proselint: init at 0.8.0
2017-03-18 18:29:20 +01:00
Michael Raskin 3a919cf7da Merge pull request #23242 from lsix/add_python_libais
pythonPackages.libais: init at 0.16
2017-03-18 17:58:50 +01:00
Michael Raskin 4047619e05 Merge pull request #21377 from non-Jedi/pythonPackages.livereload
pythonPackages.livereload: init at 2.5.0
2017-03-18 17:48:03 +01:00
David Izquierdo 8547fa1d56 update powerline 2.4 -> 2.5.2 2017-03-18 17:13:23 +01:00
Steven Taschuk 3edf455269 spambayes: Add bsddb build input
To reproduce the issue:
```
nix-build -E 'import <nixpkgs> {}' -A python27Packages.spambayes
result/bin/sb_filter.py </dev/null
```
Before this commit, this fails with
```
[...]
  File "/nix/store/vlgr1wrxd2wiw5ay5ch54365dzqvcwgq-python2.7-spambayes-1.1b1/lib/python2.7/site-packages/spambayes/dbmstorage.py", line 20, in open_dbhash
    return bsddb.hashopen(*args)
AttributeError: 'NoneType' object has no attribute 'hashopen'
```
After this commit, it doesn't.
2017-03-18 08:34:28 -04:00
Rodney Lorrimar 0a2ea18e85 pythonPackages.zeep: init at 1.1.0
Works with both Python 2.7 and 3.5.

Tests won't work under Python 3.5 due to the testtools dependency.
2017-03-17 18:40:00 +00:00
Michael Raskin b4fd04c395 pygame_sdl2: init at 6.99.10.1227 2017-03-17 14:14:38 +01:00
Antoine Eiche f28fe4cfae
pythonPackages.pycassa: init at 1.11.2
fixes #23920
2017-03-16 19:23:39 +01:00
Dan Peebles 504b596e55 pythonPackages.pathspec_0_5: init
The pre-release version of pants needs it. I'll kill the duplicated copy
once the new version of pants is final.
2017-03-16 11:01:14 -04:00
Frederik Rietdijk 645c2189d1 pythonPackages.pytest-django: unpin setuptools_scm
- unpin setuptools_scm
- move to file in folder following guidelines
- use PyPI/upstream name
2017-03-16 12:40:43 +01:00
Peter Hoeg aca073eb3a pytest-catchlog: init at 1.2.2 2017-03-16 18:19:57 +08:00
Dan Peebles e3abe9c6fa pythonPackages.pants13-pre: init 2017-03-15 22:22:02 -04:00
Jörg Thalheim 09cfbc8cc3
PyGithub: init at 1.32 2017-03-16 00:59:56 +01:00
Jörg Thalheim 00addcb95e
pythonPackages.python-jose: init at 1.3.2 2017-03-16 00:59:56 +01:00
Tom Hunger 5a9e14ee16 altair: 1.0.0 -> 1.2.0
Also disabling tests because the test runner picks up too much and
then fails.
2017-03-15 18:09:29 +00:00
Maksim Bronsky 97f26ee39a initial release: vulnix 2017-03-15 15:09:19 +01:00
Tom Hunger 90223a9bbd vega: add pytest as a build-input.
It's unclear how this worked before but it clearly did because we
have vega running in production.
2017-03-15 12:28:18 +00:00
Tom Hunger b0115c2fac Logbook: 0.11.3 -> 1.0.0 2017-03-15 12:28:18 +00:00
Frederik Rietdijk a79c653d5d Merge pull request #23885 from FRidh/jupyter
Jupyter
2017-03-14 17:32:27 +01:00
Frederik Rietdijk 4a615d90af pythonPackages.pywatchman: disable python 3.x and disable tests 2017-03-14 17:09:20 +01:00
Frederik Rietdijk 6a6d48be4e pythonPackages.dateparser: mark as broken 2017-03-14 17:07:09 +01:00
Frederik Rietdijk fd68cd4ed7 pythonPackages.pygal: 2.0.10 -> 2.3.1 2017-03-14 16:57:00 +01:00
Herwig Hochleitner b27dfdbe66 pythonPackages.parsedatetime: 2.1 -> 2.3 2017-03-14 16:46:23 +01:00
Frederik Rietdijk d7378da028 pythonPackages.configparser: fix with namespace packages 2017-03-14 16:43:46 +01:00
Frederik Rietdijk 4bfa709562 pythonPackages.pytest-virtualenv: 1.1.0 -> 1.2.7 2017-03-14 16:41:07 +01:00
Frederik Rietdijk c9d9f072e5 pythonPackages.pytest-shutil: 1.1.1 -> 1.2.8 2017-03-14 16:40:52 +01:00
Bart Brouns 5b7b1f7aa4 alot: 0.5 -> 0.5.1 2017-03-14 16:12:35 +01:00
Frederik Rietdijk fc55e80ee7 pythonPackages.ipython_genutils: 0.1.0 -> 0.2.0 2017-03-14 15:41:10 +01:00
Frederik Rietdijk 33fa4ce2be Merge pull request #23701 from lsix/update_django-raster
pythonPackages.django-raster: 0.3 -> 0.3.1
2017-03-14 13:42:14 +01:00
Frederik Rietdijk 88a3861c7b pythonPackages.pyzmq: 15.2.0 -> 16.0.2 2017-03-14 13:29:02 +01:00
Frederik Rietdijk db512addef pythonPackages.prompt_toolkit: 1.0.9 -> 1.0.13 2017-03-14 13:29:02 +01:00
Frederik Rietdijk c7268fa2a9 pythonPackages.pickleshare: 0.5 -> 0.7.4 2017-03-14 13:29:01 +01:00
Frederik Rietdijk 47f77d6104 pythonPackages.pathpy: 8.1.2 -> 10.1 2017-03-14 13:29:01 +01:00
Frederik Rietdijk bd0a0c7908 pythonPackages.pathlib2: 2.1.0 -> 2.2.1 2017-03-14 13:29:01 +01:00