My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django_contrib_comments/default.nix

24 lines
494 B

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