1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "0.5.2";
8 pname = "grappelli_safe";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "35b7ccaf9acc54684c73aeefbeaddc63b8a16143bd981bd5b3ebef253def07df";
13 };
14
15 meta = with lib; {
16 description = "A snapshot of django-grappelli for the Mezzanine CMS";
17 longDescription = ''
18 grappelli_safe was created to provide a snapshot of the
19 Grappelli admin skin for Django, to be referenced as a
20 dependency for the Mezzanine CMS for Django.
21
22 At the time of grappelli_safe's creation, Grappelli was
23 incorrectly packaged on PyPI, and had also dropped compatibility
24 with Django 1.1 - grappelli_safe was therefore created to
25 address these specific issues.
26 '';
27 homepage = "https://github.com/stephenmcd/grappelli-safe";
28 downloadPage = "http://pypi.python.org/pypi/grappelli_safe/";
29 license = licenses.free;
30 maintainers = with maintainers; [ prikhi ];
31 platforms = platforms.unix;
32 };
33
34}