ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / grappelli_safe / default.nix
blob33b4c437dde263cf3f6c1a4d5876ce2378b3e1ed
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "1.1.1";
8   pname = "grappelli_safe";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "ee34b3e2a3711498b1f8da3d9daa8a1239efdf255a212181742b6a5890fac039";
13   };
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.
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   };