about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/django_contrib_comments/default.nix
blob: a452db3cf2810477661d15a272cceef25df5d590 (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.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "26350b2c353816570a74b7fb19c558ce00288625ac32886a5274f4f931c098f9";
  };

  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;
  };

}