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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-SN4A8VZ34BaiFq7/IF1uAOQ5HJpXAhNsZBGcRytzVto=";
  };

  propagatedBuildInputs = [ django ];

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

}