From 3d1765e0821b93b81ab52a80fe7a24e4527f7db6 Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Fri, 30 Aug 2024 12:23:08 +0200 Subject: [PATCH] python3Packages.pyicumessageformat: inherit pname in fetchPypi --- .../python-modules/pyicumessageformat/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyicumessageformat/default.nix b/pkgs/development/python-modules/pyicumessageformat/default.nix index efa0969006b8e..f37cee1ad919e 100644 --- a/pkgs/development/python-modules/pyicumessageformat/default.nix +++ b/pkgs/development/python-modules/pyicumessageformat/default.nix @@ -13,8 +13,7 @@ buildPythonPackage rec { build-system = [ setuptools ]; src = fetchPypi { - pname = "pyicumessageformat"; - inherit version; + inherit pname version; hash = "sha256-s+l8DtEMKxA/DzpwGqZSlwDqCrZuDzsj3I5K7hgfyEA="; }; @@ -25,6 +24,8 @@ buildPythonPackage rec { meta = with lib; { description = "Unopinionated Python3 parser for ICU MessageFormat"; homepage = "https://github.com/SirStendec/pyicumessageformat/"; + # Based on master, as upstream doesn't tag their releases on GitHub anymore + changelog = "https://github.com/SirStendec/pyicumessageformat/blob/master/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ erictapen ]; };