Commit graph

9 commits

Author SHA1 Message Date
Robert Schütz f721655455 python.pkgs.cairosvg1: remove
Make python2.pkgs.cairosvg refer to what previously was cairosvg1 instead.
2019-03-13 23:49:35 +01:00
Maximilian Bosch 8dac864470 pythonPackages.thumbor: 6.6.0 -> 6.7.0
This patch ensures that the currently broken `thumbor`[1] package builds
and works again.

The following problems were fixed:

* Rather than placing required packages (like `gifsicle` or `exiftool`)
  into the build input list, we reference them explicitly where needed
  to ensure that the package works after the build without further
  installs.

* Skip the `test_redeye_applied` test case which is broken for a while
  now.

[1] https://hydra.nixos.org/build/90290998
2019-03-13 11:36:38 +01:00
Jörg Thalheim 88fbb32522
pythonPackages.thumbor: 6.5.2 -> 6.6.0
now compatible with our pillow
2018-12-22 09:23:17 +01:00
Jaakko Luttinen 51f6d7f244
pythonPackages.piexif: 1.0.13 -> 1.1.2 2018-11-29 12:38:30 +01:00
Jaakko Luttinen 336f11c3b1
pythonPackages.thumbor: run tests 2018-11-29 12:38:29 +01:00
Maximilian Bosch cd21faff2b
pythonPackages.thumbor: 6.5.1 -> 6.5.2
6.5.2 allows Pillow==5.2.0 (see https://github.com/thumbor/thumbor/releases/tag/6.5.2).

See https://hydra.nixos.org/build/79403232 for further reference.
2018-08-15 13:59:35 +02:00
Maximilian Bosch 4239726e0d
pythonPackages.thumbor: 6.4.2 -> 6.5.1
The current `thumbor` build on master: https://hydra.nixos.org/build/76000076

This is mainly caused by several dependency bumps (e.g.
`pythonPackages.tornado` to v5 in dd936ccdb9)
that broke the `setup.py` from version 6.4.

Bumping to the latest stable version (6.5.1) fixes these issues.
2018-06-22 00:01:32 +02:00
Vaibhav Sagar d8c26c0db7 pythonPackages.thumbor: mark as broken under Python 3 2018-03-19 17:12:17 +08:00
Maximilian Bosch 23e6689578
pythonPackages.thumbor: 6.3.2 -> 6.4.2; fix build
Origianlly the package was broken as bumping `pythonPackages.pillow` to
5.x broke `thumbor`. The latest upstream version `6.4.2` solved this
issue, so a simple package bump was sufficient.

Furthermore the following changes were made:

- moved the expression into its own file
- added myself as maintainer in case of any further breackage
- re-enabled python3 build: 6.4.2 is fine with python3, however the
  `futures` dependency can't be satisfied anymore as it's part of
  Python3. Therefore a patch for `setup.py` will be applied for Python3
  buildsto drop the dependency

Note: the testsuite is disabled for now as several impure tests are done
and our testing environment seems to be unable to work the with the
natively compiled python modules properly.

Therefore I tested the module using the following expression:

``` nix
with import ./. {};

stdenv.mkDerivation {
  name = "thumbor-test";
  src = null;
  buildInputs = [ python pythonPackages.thumbor ];
}
```

Inside this nix shell `thumbor` works fine and the native modules can be
imported.

See https://hydra.nixos.org/build/71062729/log
See ticket #36453
2018-03-18 10:31:59 +01:00