pythonPackages.mezzanine: refactor move to pyhton-modules
required update and creation of new package to fix broken.
This commit is contained in:
committed by
Frederik Rietdijk
parent
32414fe980
commit
82eaa20725
70
pkgs/development/python-modules/mezzanine/default.nix
Normal file
70
pkgs/development/python-modules/mezzanine/default.nix
Normal file
@@ -0,0 +1,70 @@
|
||||
{ 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;
|
||||
|
||||
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 stdenv.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.linux;
|
||||
};
|
||||
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
diff -Nur mezzanine-3.1.10/mezzanine/bin/mezzanine_project.py mezzanine-3.1.10-patched/mezzanine/bin/mezzanine_project.py
|
||||
--- mezzanine-3.1.10/mezzanine/bin/mezzanine_project.py 2014-08-30 07:12:19.000000000 +0200
|
||||
+++ mezzanine-3.1.10-patched/mezzanine/bin/mezzanine_project.py 2016-10-31 14:47:30.982401818 +0100
|
||||
@@ -5,6 +5,7 @@
|
||||
from distutils.dir_util import copy_tree
|
||||
from optparse import OptionParser
|
||||
import os
|
||||
+import stat
|
||||
from shutil import move
|
||||
from uuid import uuid4
|
||||
|
||||
@@ -61,6 +62,9 @@
|
||||
copy_tree(os.path.join(package_path, "project_template"), project_path)
|
||||
move(local_settings_path + ".template", local_settings_path)
|
||||
|
||||
+ os.chmod(local_settings_path,
|
||||
+ os.stat(local_settings_path).st_mode | stat.S_IWRITE)
|
||||
+
|
||||
# Generate a unique SECRET_KEY for the project's setttings module.
|
||||
with open(local_settings_path, "r") as f:
|
||||
data = f.read()
|
||||
Reference in New Issue
Block a user