summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-10-14 21:41:09 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-10-14 21:50:39 +0200
commit6b4453e7a7202f3ef020871bcb484bccdbbb86b5 (patch)
tree4b9ecf03dfae62f29bd3051c8c83dd069fce7ec9
parentpython310Packages.nameparser: 1.1.2 -> 1.1.3 (diff)
downloadnixpkgs-6b4453e7a7202f3ef020871bcb484bccdbbb86b5.tar.gz
python311Packages.nameparser: add changelog to meta
-rw-r--r--pkgs/development/python-modules/nameparser/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nameparser/default.nix b/pkgs/development/python-modules/nameparser/default.nix
index 3d45385212d0..bc48b0581903 100644
--- a/pkgs/development/python-modules/nameparser/default.nix
+++ b/pkgs/development/python-modules/nameparser/default.nix
@@ -17,9 +17,10 @@ buildPythonPackage rec {
buildInputs = [ glibcLocales ];
meta = with lib; {
- description = "A simple Python module for parsing human names into their individual components";
+ description = "Module for parsing human names into their individual components";
homepage = "https://github.com/derek73/python-nameparser";
+ changelog = "https://github.com/derek73/python-nameparser/releases/tag/v${version}";
license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ ];
};
-
}