diff --git a/pkgs/development/python-modules/wassima/default.nix b/pkgs/development/python-modules/wassima/default.nix index 5a9a6b40240c..b39234226445 100644 --- a/pkgs/development/python-modules/wassima/default.nix +++ b/pkgs/development/python-modules/wassima/default.nix @@ -6,16 +6,16 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "wassima"; - version = "2.1.0"; + version = "2.1.1"; pyproject = true; src = fetchFromGitHub { owner = "jawah"; repo = "wassima"; - tag = version; - hash = "sha256-0YHj5cmGZlZqUow+xkpQKHe+KB4X/OklEs4u8z/uV18="; + tag = finalAttrs.version; + hash = "sha256-uH8UBsdqnPbGyQX/Tn5Ct3vcbfLEyUC8pDSCM4PwWZg="; }; build-system = [ hatchling ]; @@ -30,10 +30,10 @@ buildPythonPackage rec { doCheck = false; meta = { - changelog = "https://github.com/jawah/wassima/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/jawah/wassima/blob/${finalAttrs.src.tag}/CHANGELOG.md"; description = "Access your OS root certificates with utmost ease"; homepage = "https://github.com/jawah/wassima"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; }; -} +})