summary refs log tree commit diff
path: root/pkgs/development/python-modules/mezzanine/default.nix
blob: d27fd86204597f1818e72810732712160a6fd294 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
, pyflakes
, pep8
, django
, django_contrib_comments
, filebrowser_safe
, grappelli_safe
, bleach
, tzlocal
, beautifulsoup4
, requests
, requests_oauthlib
, future
, pillow
, chardet
}:

buildPythonPackage rec {
  version = "4.3.1";
  pname = "Mezzanine";

  src = fetchPypi {
    inherit pname version;
    sha256 = "42c7909953cc5aea91921b47d804b61e14893bf48a2a476ce49a96559a0fa1d3";
  };

  disabled = isPyPy || stdenv.lib.versionOlder django.version "1.11"
    || stdenv.lib.versionAtLeast django.version "2.0";

  buildInputs = [ pyflakes pep8 ];
  propagatedBuildInputs = [ django django_contrib_comments filebrowser_safe grappelli_safe bleach tzlocal beautifulsoup4 requests requests_oauthlib future pillow chardet ];

  # Tests Fail Due to Syntax Warning, Fixed for v3.1.11+
  doCheck = false;
  # sed calls will be unecessary in v3.1.11+
  preConfigure = ''
    sed -i 's/==/>=/' setup.py
  '';

  LC_ALL="en_US.UTF-8";

  meta = with lib; {
    description = ''
      A content management platform built using the Django framework
    '';
    longDescription = ''
      Mezzanine is a powerful, consistent, and flexible content
      management platform. Built using the Django framework, Mezzanine
      provides a simple yet highly extensible architecture that
      encourages diving in and hacking on the code. Mezzanine is BSD
      licensed and supported by a diverse and active community.

      In some ways, Mezzanine resembles tools such as Wordpress that
      provide an intuitive interface for managing pages, blog posts,
      form data, store products, and other types of content. But
      Mezzanine is also different.  Unlike many other platforms that
      make extensive use of modules or reusable applications,
      Mezzanine provides most of its functionality by default. This
      approach yields a more integrated and efficient platform.
    '';
    homepage = "http://mezzanine.jupo.org/";
    downloadPage = "https://github.com/stephenmcd/mezzanine/releases";
    license = licenses.free;
    maintainers = with maintainers; [ prikhi ];
    platforms = platforms.unix;
    # mezzanine requires django-1.11. Consider overriding python package set to use django_1_11"
    broken = versionOlder django.version "1.11" || versionAtLeast django.version "2.0";
  };

}