diff --git a/pkgs/development/python-modules/mscerts/default.nix b/pkgs/development/python-modules/mscerts/default.nix index c1682229f6d9..23f9f4b0c09a 100644 --- a/pkgs/development/python-modules/mscerts/default.nix +++ b/pkgs/development/python-modules/mscerts/default.nix @@ -5,16 +5,16 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "mscerts"; - version = "2025.8.29"; + version = "2026.4.30"; pyproject = true; src = fetchFromGitHub { owner = "ralphje"; repo = "mscerts"; - tag = version; - hash = "sha256-K7U4dbhH3yWElSKRhU9mHU4W+Hdc6Vb9kf/TE4EJs8c="; + tag = finalAttrs.version; + hash = "sha256-S6YQt0PaY9OpFFrTcnHrak+8/x105Af7xLW5jln8GK0="; }; build-system = [ setuptools ]; @@ -29,7 +29,7 @@ buildPythonPackage rec { meta = { description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python"; homepage = "https://github.com/ralphje/mscerts"; - license = with lib.licenses; [ mpl20 ]; + license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})