python3Packages.wassima: 2.1.0 -> 2.1.1 (#529750)

This commit is contained in:
Sandro
2026-06-09 16:22:02 +00:00
committed by GitHub
@@ -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 ];
};
}
})