Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / django_contrib_comments / default.nix
blob3f717b0fb5ce16b8334b46267e9b1582fcb4604e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django
5 }:
7 buildPythonPackage rec {
8   pname = "django-contrib-comments";
9   version = "2.1.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "d82f1d04690550df026553053903deec0c52dc54212e1b79241b08f0355cff2c";
14   };
16   propagatedBuildInputs = [ django ];
18   meta = with 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   };