From 439839b2d073403efe85543d06fb9d3ab99f5b31 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 20 Dec 2025 23:28:09 +0000 Subject: [PATCH 1/2] python3Packages.s3-credentials: 0.16.1 -> 0.17 --- pkgs/development/python-modules/s3-credentials/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/s3-credentials/default.nix b/pkgs/development/python-modules/s3-credentials/default.nix index a8eac52ca3dc..95a1a78b4f81 100644 --- a/pkgs/development/python-modules/s3-credentials/default.nix +++ b/pkgs/development/python-modules/s3-credentials/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "s3-credentials"; - version = "0.16.1"; + version = "0.17"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "simonw"; repo = "s3-credentials"; tag = version; - hash = "sha256-TuGrKSfnn0CSMpRxdCM6C446z+y9d2ZLB7+wSCxSqP4="; + hash = "sha256-zDolFoil/oTmvFDGVF+cLTgCpfigvvEW2UuVdIN2pYM="; }; build-system = [ setuptools ]; From 12444718f6eda03a85c305c359de3b8cf4daef1d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 Dec 2025 21:39:53 +0100 Subject: [PATCH 2/2] python313Packages.s3-credentials: modernize --- pkgs/development/python-modules/s3-credentials/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/s3-credentials/default.nix b/pkgs/development/python-modules/s3-credentials/default.nix index 95a1a78b4f81..98e5668f0c28 100644 --- a/pkgs/development/python-modules/s3-credentials/default.nix +++ b/pkgs/development/python-modules/s3-credentials/default.nix @@ -9,7 +9,6 @@ moto, pytest-mock, pytestCheckHook, - pythonOlder, setuptools, }: @@ -18,8 +17,6 @@ buildPythonPackage rec { version = "0.17"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "simonw"; repo = "s3-credentials"; @@ -52,7 +49,7 @@ buildPythonPackage rec { meta = { description = "Python CLI utility for creating credentials for accessing S3 buckets"; homepage = "https://github.com/simonw/s3-credentials"; - changelog = "https://github.com/simonw/s3-credentials/releases/tag/${version}"; + changelog = "https://github.com/simonw/s3-credentials/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ techknowlogick ]; mainProgram = "s3-credentials";