nixpkgs/pkgs/development/python-modules/django_contrib_comments/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

25 lines
492 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, django
}:
buildPythonPackage rec {
pname = "django-contrib-comments";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
hash = "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;
};
}