summary refs log tree commit diff
path: root/pkgs/development/python-modules/pilkit/default.nix
blob: 019d5551a3a68d27b2d2c2df03cd737086a49adc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv
, buildPythonPackage
, fetchPypi
, pillow
, nose_progressive
, nose
, mock
, blessings
}:

buildPythonPackage rec {
  pname = "pilkit";
  version = "2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ddb30c2f0198a147e56b151476c3bb9fe045fbfd5b0a0fa2a3148dba62d1559f";
  };

  preConfigure = ''
    substituteInPlace setup.py --replace 'nose==1.2.1' 'nose'
  '';

  # tests fail, see https://github.com/matthewwithanm/pilkit/issues/9
  doCheck = false;

  buildInputs = [ pillow nose_progressive nose mock blessings ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/matthewwithanm/pilkit/";
    description = "A collection of utilities and processors for the Python Imaging Libary";
    license = licenses.bsd0;
    maintainers = with maintainers; [ domenkozar ];
  };

}