From 9bea50a421b71d36fc583ab816bd696b7d9016db Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 13 Aug 2023 11:55:21 +0200 Subject: [PATCH] python311Packages.goocalendar: normalize pname --- pkgs/development/python-modules/goocalendar/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/goocalendar/default.nix b/pkgs/development/python-modules/goocalendar/default.nix index 412b9dbe8969..2a42a775f3d6 100644 --- a/pkgs/development/python-modules/goocalendar/default.nix +++ b/pkgs/development/python-modules/goocalendar/default.nix @@ -10,14 +10,15 @@ }: buildPythonPackage rec { - pname = "GooCalendar"; + pname = "goocalendar"; version = "0.8.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; + pname = "GooCalendar"; + inherit version; hash = "sha256-LwL5TLRkD6ALucabLUeB0k4rIX+O/aW2ebS2rZPjIUs="; }; @@ -39,7 +40,7 @@ buildPythonPackage rec { doCheck = false; meta = with lib; { - description = "A calendar widget for GTK using PyGoocanvas."; + description = "A calendar widget for GTK using PyGoocanvas"; homepage = "https://goocalendar.tryton.org/"; changelog = "https://foss.heptapod.net/tryton/goocalendar/-/blob/${version}/CHANGELOG"; license = licenses.gpl2Only;