Files
nixpkgs/pkgs/development/python-modules/django-contrib-comments/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

26 lines
518 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
django,
}:
buildPythonPackage rec {
pname = "django-contrib-comments";
version = "2.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-SN4A8VZ34BaiFq7/IF1uAOQ5HJpXAhNsZBGcRytzVto=";
};
propagatedBuildInputs = [ django ];
meta = with lib; {
homepage = "https://github.com/django/django-contrib-comments";
description = "Code formerly known as django.contrib.comments";
license = licenses.bsd0;
};
}