3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

1596 commits

Author SHA1 Message Date
Edward Tjörnhammar 2a8b3c724b Merge pull request #7521 from hbunke/hb_geeknote
python-packages: added geeknote with dependencies
2015-04-27 00:20:12 +02:00
Vladimír Čunát 30f31c9afc Merge 'master' into staging
(relatively simple conflicts)
2015-04-26 22:52:08 +02:00
Igor Pashev 00c3434a7e Added mwlib 2015-04-26 20:32:13 +00:00
Hendrik Bunke 60aa7bec64 python-packages: added geeknote and dependencies
packages: geeknote, thrift, markdown2, evernote
2015-04-26 14:28:01 +02:00
Jaka Hudoklin 8599cfdad4 Merge pull request #7552 from offlinehacker/pkgs/python-packages/docker-compose
fig: switch to docker-compose
2015-04-25 16:23:00 +02:00
Jaka Hudoklin 3e480fde93 fig: switch to docker-compose 2015-04-25 15:11:19 +02:00
William A. Kennington III 49967a7b3a sphinx: 1.2.3 -> 1.3.1 2015-04-22 12:35:21 -07:00
William A. Kennington III 6a031c8aa7 snowballstemmer: Add derivation 2015-04-22 12:35:21 -07:00
William A. Kennington III d144b28996 PyStemmer: Add derivation 2015-04-22 12:35:21 -07:00
William A. Kennington III 18e91d3614 alabaster: Add derivation 2015-04-22 12:35:21 -07:00
William A. Kennington III 132c01761e docutils: 0.11 -> 0.12 2015-04-22 12:35:21 -07:00
Rok Garbas 052b079c02 Revert "pythonPackages.pyenchant: point to enchant lib via PYENCHANT_LIBRARY_PATH"
This reverts commit 314d146c8c.
2015-04-21 20:14:59 +02:00
Rok Garbas 314d146c8c pythonPackages.pyenchant: point to enchant lib via PYENCHANT_LIBRARY_PATH 2015-04-21 09:42:55 +02:00
Arseniy Seroka 63d4512d33 Merge pull request #7455 from spwhitt/pil
pil, pillow: Patch out Darwin impurities
2015-04-19 04:30:18 +03:00
Spencer Whitt edf9bcdbab pil, pillow: Patch out Darwin impurities 2015-04-18 19:58:02 -04:00
Arseniy Seroka 594ce7bc5d Merge pull request #7435 from anderspapitto/master
add gmusicapi python package
2015-04-18 17:36:25 +03:00
Anders Papitto c11c36daaa add gmusicapi python package
as well as several dependencies. Tested with a personal project that
relies on gmusicapi
2015-04-17 18:17:50 -07:00
Domen Kožar a914bd8311 django: add 1.8 2015-04-16 14:10:19 -04:00
Domen Kožar c1e716bfb9 django: don't wrap template scripts, fixes #3134 2015-04-16 14:10:19 -04:00
Domen Kožar 0206245aba Revert "Fix buildPythonPackage overriding."
This reverts commit 6a1de6d4a7.

It broke eval
2015-04-14 15:02:49 -04:00
Tom Hunger 6a1de6d4a7 Fix buildPythonPackage overriding.
makeOverridable takes a function and an argument, the parenthesis
caused there to be only one argument which works but cannot
be overridden.
2015-04-14 17:52:36 +01:00
aszlig 311aa5d8d9
python-wrapper: Handle strings at the beginning.
This should fix #7366 for now, but using the (IMHO) pragmatic approach
of extending the sed expression to recognize strings.

However, this approach is obviously not parsing the full AST, nor does
it wrap Python itself (as pointed out by @spwhitt in #7366) but tries to
match Python strings as best as possible without getting TOO unreadable.

We also use a little bit of Nix to help generating the SED expression,
because doing the whole quote matching block over and over again would
be quite repetitious and error-prone to change. The reason why I'm using
imap here is that we need to have unique labels to avoid jumping into
the wrong branch.

So the new expression is not only able to match continous regions of
triple-quoted strings, but also regions with only one quote character
(even with escaped inner quotes) and empty strings.

However, what it doesn't correctly recognize is something like this:

"string1" "string2" "multi
line
string"

Which is very unlikely that we'll find something like this in the wild.
Of course, we could handle it as well, but it would mean that we need to
substitute the current line into hold space until we're finished parsing
the strings, branch off to another label where we match multiline
strings of all sorts and swap hold/pattern space and finally print the
result. So to summarize: The SED expression would be 3 to 4 times bigger
than now and we gain very little from that.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-04-14 07:13:15 +02:00
koral 94af1ba4d7 glances: 2.1 -> 2.3 2015-04-12 20:59:04 +00:00
Austin Seipp a7118b5e6a nixpkgs: python34Packages.rainbowstream 1.1.6 -> 1.2.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-04-12 10:28:36 -05:00
Austin Seipp c14689c328 nixpkgs: python34Packages.arrow 0.4.4 -> 0.5.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-04-12 10:28:36 -05:00
Austin Seipp 0093d7a9ea nixpkgs: pythonPackages.obfsproxy 0.2.12 -> 0.2.13
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-04-12 10:28:36 -05:00
Bjørn Forsman 48b5ad912f python-pelican: add missing 'markupsafe' dependency
Needed to be able to run 'make serve' in a pelican directory, else this
happens:

  $ make serve
  cd /home/bfo/pelican-test/output && python -m pelican.server
  /run/current-system/sw/bin/python: No module named markupsafe
  make: *** [serve] Error 1
2015-04-12 17:18:13 +02:00
aszlig 54f58ee991
python-mccabe: Fix build due to missing tests.
Regression introduced by 56a6f22d7f.

I'm temporarily pulling in test_mccabe.py, as suggested by someone at
flintwork/mccabe#31, which for now should fix the build (and the tests
of course as well).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-04-12 06:50:34 +02:00
Rok Garbas 56a6f22d7f pythonPackages: updates for many packages
* deform -> 2.0a2
* peppercorn -> 0.5
* pyramid -> 1.5.2
* pyramid_tm -> 0.10
* zope_deprecation -> 4.1.2
* venusian -> 1.0
* flake8 -> 2.3.0
* mccabe -> 0.3
* pg8000 -> 1.10.1
* turses -> 0.2.23
* urwid -> 1.3.0
* waitress -> 0.8.9
* translationstring -> 1.3
2015-04-11 17:00:07 +02:00
Bjørn Forsman 2c6f9b0c62 python-robotframework: update 2.8.6 -> 2.8.7
Release notes:
https://github.com/robotframework/robotframework/releases/tag/2.8.7
2015-04-11 14:18:19 +02:00
Thomas Tuegel 88918e10e9 Merge branch 'master' into staging 2015-04-10 07:45:38 -05:00
Charles Strahan 8757cc4eb0 awscli: update to 1.7.21 2015-04-09 19:24:46 -04:00
Arseniy Seroka 2425f27b17 Merge pull request #7280 from auntieNeo/blink
Bumped blink version to 1.2.2
2015-04-09 05:20:19 +03:00
Jonathan Glines 2b949cfd46 Bumped blink version to 1.2.2 2015-04-08 17:01:37 -06:00
Domen Kožar 158d444f78 Merge pull request #7262 from desiderius/colander-1.0
python-packages: update colander-1.0b to 1.0
2015-04-08 17:42:45 +02:00
John Wiegley eda06c4768 Drop reference to unknown attribute "unknown" 2015-04-07 10:44:21 -05:00
Sander van der Burg ee6406d234 python-dicttoxml: add package 2015-04-07 15:32:07 +00:00
desiderius fca7bee0c1 python-packages: update colander-1.0b to 1.0 2015-04-07 15:21:29 +02:00
Erik Timan e5989ee6e3 python-packages: add missing deps to azure 2015-04-07 09:52:29 +00:00
Erik Timan db6de11341 python-packages: azure 0.9.0 -> 0.10.0
Also adds maintainer section.
2015-04-07 09:30:46 +00:00
Domen Kožar 64c0e6b7fa Merge pull request #7219 from rzetterberg/development
Removes python 2.7 block in favor of "disabled"
2015-04-07 06:44:44 +02:00
Eric Seidel 6ec373d776 Merge branch master into staging 2015-04-06 18:58:08 -07:00
Richard Zetterberg 5162704412 Removes python 2.7 block in favor of "disabled" 2015-04-06 20:35:46 +02:00
codyopel b18cfaf2b8 pyspotify: 0.11 -> 0.12 2015-04-06 03:37:36 -04:00
Damien Cassou 8e7f1f1c02 kaa-* and mmpython not on py3k and pypy anymore 2015-04-04 21:45:51 +02:00
Michael Raskin 48b132df02 Merge pull request #5667 from DamienCassou/subdownloader
Add Subdownloader
2015-04-04 13:34:40 +03:00
William A. Kennington III 4e106397df msgpack-python: 0.4.2 -> 0.4.6 2015-04-03 18:38:59 -07:00
Tobias Geerinckx-Rice 93fc9baf8d python-packages: pgcli 0.16.2 -> 0.16.3
Bug Fixes:

- Add more SQL keywords for auto-complete suggestion.
- Messages raised as part of stored procedures are no longer ignored.
- Use postgres flavored syntax highlighting instead of generic ANSI SQL.
2015-04-04 02:28:20 +02:00
Cillian de Róiste 6d4a9fa393 Add Hovercraft: a tool to make impress.js presentations from reStructuredText
Also updated argh to 0.26.1 and added dependencies: pathtools, svg.path
and watchdog. Tests are disabled because one test assumes we are using
docutils 0.12 but we only have docutils 0.11 at the moment.
2015-04-03 18:15:40 +02:00
Thomas Tuegel c0d5cd0ff9 poppler: fix build of Qt 4 and Qt 5 wrappers
The autoconf build system for poppler does not support building the
wrappers separately, so this slightly enlarges the size of closures. To
compensate, the command-line utilities have been separated into their
own package.
2015-04-02 09:51:44 -05:00
Domen Kožar c80277c509 Merge pull request #7106 from kevinmarsh/nameparser
Add nameparser python package
2015-04-02 09:52:13 +02:00
Lancelot SIX 237029ab74 Add pytest-quickcheck testing framework
Add Pytest-quickcheck and necessary dependencies into pythonPackages
set.
2015-04-01 22:43:58 +02:00
Domen Kožar 06a810659c Merge pull request #7102 from oxij/fix-fixed-notmuch
pythonPackages: notmuch: revert 6258728, move sourceRoot setting to top-level
2015-04-01 07:14:25 +02:00
Tobias Geerinckx-Rice ff1bccdbd5 python-packages: gdrivefs 0.14.2 -> 0.14.3 2015-03-31 13:54:41 +02:00
Kevin Marsh 7f573ee2c6 Add nameparser python package 2015-03-31 10:52:32 +01:00
Jan Malakhovski d711528c8b pythonPackages: notmuch: revert 6258728, move sourceRoot setting to top-level notmuch
Looks like this is the only way to do what 6258728318
was expected to do that doesn't break things and doesn't look like a complete hack.

The problem is that different `fetch`ers generate very different results (from
archive files to plain source trees) and allowing overriding `src` in top-level
derivation when there is a derived python package is no trivial matter.
2015-03-31 05:36:28 +00:00
lethalman 9c6e5527b2 Merge pull request #7028 from kevinmarsh/enum34
Update python package enum34 1.0 -> 1.0.4
2015-03-30 18:09:34 +02:00
lethalman 33fb8e2d52 Merge pull request #7084 from risicle/celery
add packages for python-celery and its dependencies
2015-03-30 17:39:33 +02:00
lethalman 9bbeb44517 Merge pull request #6950 from joelmo/master
searx: update 0.3.0 -> 0.7.0 + fetchgit -> fetchurl
2015-03-30 17:24:00 +02:00
lethalman 9f3153b162 Merge pull request #6958 from lancelotsix/add_basemap_python_module
Add python basemap package
2015-03-30 17:22:24 +02:00
lethalman b379026d7e Merge pull request #6993 from kevinmarsh/pyscss
Add pyScss python package
2015-03-30 16:11:03 +02:00
Robert Scott 1bf09248eb add packages for celery and its dependencies 2015-03-30 13:06:44 +01:00
William A. Kennington III fa2e5b25ba Merge branch 'master' into staging 2015-03-29 14:25:48 -07:00
William A. Kennington III 5248ba84fd mako: 0.9.1 -> 1.0.1 2015-03-28 13:56:28 -07:00
William A. Kennington III 50cd623632 mako: 0.9.1 -> 1.0.1 2015-03-28 13:56:12 -07:00
Robert Scott a440943847 add packages django_classytags & django_reversion 2015-03-28 18:07:52 +00:00
William A. Kennington III 7ccccc15ba Merge branch 'master' into staging 2015-03-27 16:03:03 -07:00
Kevin Marsh 1f34a1d4ad Update python package enum34 1.0 -> 1.0.4, also fixed missing build input for python26 2015-03-27 13:45:15 +00:00
Domen Kožar 883ee4dd72 Merge pull request #6994 from oxij/trivial-package-fixes
Trivial package fixes
2015-03-27 11:09:16 +01:00
Domen Kožar ba5134c8e0 Merge pull request #7021 from taktoa/master
Added package for willie
2015-03-27 09:39:55 +01:00
Remy Goldschmidt ba4f29aee6 update_checker doesn't pass tests 2015-03-27 00:56:44 -04:00
Remy Goldschmidt b3e4968491 Added willie package 2015-03-26 22:28:09 -04:00
William A. Kennington III 767c179a94 Merge branch 'master' into staging 2015-03-26 14:44:05 -07:00
Robert Scott f56b17cb30 django: minimum supported python version for django 1.7 is 2.7 2015-03-26 19:56:34 +00:00
Peter Simons 230182f61b pythonPackages.subunit: revert "rewrite to use buildPythonPackage"
This reverts commit e42547d8e9. The change
broke samba and dependent packages.
2015-03-26 16:17:31 +01:00
Kevin Marsh fdec6de0bb Add pyScss python package 2015-03-26 14:31:09 +00:00
Kevin Marsh 3de81cb3c7 Add pathlib python package 2015-03-26 14:31:09 +00:00
Jan Malakhovski 6258728318 pythonPackages: notmuch: fix sourceRoot so that one can use overrides in top-level notmuch and still have this work 2015-03-26 12:58:39 +00:00
Domen Kožar e42547d8e9 pythonPackages.subunit: rewrite to use buildPythonPackage 2015-03-26 10:25:58 +01:00
William A. Kennington III 4afecb84e3 Merge pull request #6948 from kevinmarsh/master
Add gspread python package
2015-03-25 22:19:08 -07:00
Thomas Tuegel 8fd5dd89ac Merge branch 'master' into staging 2015-03-24 17:49:30 -05:00
Thomas Tuegel 5d1f6ad57c qt5: make qt-5.4.1 default 2015-03-24 17:14:56 -05:00
Tobias Geerinckx-Rice c3bc040128 python-packages: pgcli 0.16.1 -> 0.16.2 2015-03-24 04:02:13 +01:00
Lancelot SIX 2d8434d90b Add python basemap package 2015-03-23 21:52:47 +01:00
Joel Moberg 6fe1426393 searx: update 0.3.0 -> 0.7.0 + fetchgit -> fetchurl 2015-03-23 17:24:54 +01:00
Kevin Marsh b04f31f801 gspread: remove accidental sha256 value 2015-03-23 13:55:16 +00:00
Kevin Marsh e9c6f6b171 Add gspread python package 2015-03-23 13:48:47 +00:00
Kevin Marsh e412105bbb Update python package requests2 2.5.1 -> 2.6.0 2015-03-23 09:27:45 +00:00
cillianderoiste c44c4cbe37 Merge pull request #6900 from k0ral/clf
New python package: clf
2015-03-22 19:28:25 +01:00
cillianderoiste e3e31fba06 Merge pull request #6918 from teh/master
pythonPackages: Add hypothesis 0.7.0.
2015-03-22 19:27:08 +01:00
Damien Cassou a94891c315 Update syncthing 0.6.2 -> 0.6.3 2015-03-22 17:19:26 +01:00
Tom Hunger 348b26a523 pythonPackages: Add hypothesis 0.7.0. 2015-03-21 11:34:58 +00:00
Kevin Marsh c3d92c8efe Update Django to latest minor versions 2015-03-20 15:16:01 +00:00
koral 2d46220863 New python package: clf 2015-03-19 17:12:50 +00:00
Lancelot SIX 8e0134c2cd Add networkx python package 2015-03-18 21:42:50 +01:00
lethalman 0453322524 Merge pull request #6789 from joachifm/electrum-2.0.2
Electrum 2.0.2
2015-03-18 10:09:16 +01:00
Joachim Fasting 0d1b3aa8b8 pythonPackages: add pyasn1-modules, qrcode, and tlslite for electrum 2015-03-18 09:49:32 +01:00
Ricardo M. Correia d54cac725f pythonPackages.coverage: Fix hash 2015-03-15 05:16:05 +01:00
Jaka Hudoklin 180da0d463 Merge pull request #6693 from benley/docker-registry
docker-registry: Update to 0.9.1, with boto bugfix
2015-03-15 02:27:52 +01:00
William A. Kennington III feb4629fde Merge pull request #6782 from bobvanderlinden/fix-mysql-python
pythonPackages: MySQL_python: added openssl as buildInput
2015-03-13 17:32:26 -07:00