1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, django
5}:
6
7buildPythonPackage rec {
8 pname = "django-contrib-comments";
9 version = "1.9.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "61b051d7bc3ff593e86b41a1ed5e969423cf55cc92768598af3315e2528e0890";
14 };
15
16 propagatedBuildInputs = [ django ];
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/django/django-contrib-comments;
20 description = "The code formerly known as django.contrib.comments";
21 license = licenses.bsd0;
22 };
23
24}