summary refs log tree commit diff
path: root/pkgs/development/python-modules/django_contrib_comments/default.nix
blob: 9603929406c33e2cd7a0800168b561d978308c91 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, django
}:

buildPythonPackage rec {
  pname = "django-contrib-comments";
  version = "1.9.2";

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

  propagatedBuildInputs = [ django ];

  meta = with stdenv.lib; {
    homepage = https://github.com/django/django-contrib-comments;
    description = "The code formerly known as django.contrib.comments";
    license = licenses.bsd0;
  };

}