Merge pull request #301757 from r-ryantm/auto-update/python312Packages.s3-credentials

python312Packages.s3-credentials: 0.15 -> 0.16.1
This commit is contained in:
Fabian Affolter 2024-04-05 23:10:25 +02:00 committed by GitHub
commit 10a9b00b6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,31 +1,35 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub boto3,
, pythonOlder buildPythonPackage,
, click click,
, click-default-group click-default-group,
, boto3 fetchFromGitHub,
, pytestCheckHook hypothesis,
, hypothesis moto,
, pytest-mock pytest-mock,
, moto pytestCheckHook,
pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "s3-credentials"; pname = "s3-credentials";
version = "0.15"; version = "0.16.1";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "simonw"; owner = "simonw";
repo = pname; repo = "s3-credentials";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-YSsm5SMfDRqJ53XnBjMgaWWHjA6IXnmEBvxme4uiOPw="; hash = "sha256-TuGrKSfnn0CSMpRxdCM6C446z+y9d2ZLB7+wSCxSqP4=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
boto3 boto3
click click
click-default-group click-default-group
@ -38,9 +42,7 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "s3_credentials" ];
"s3_credentials"
];
disabledTests = [ disabledTests = [
# AssertionError: assert 'directory/th...ory/... # AssertionError: assert 'directory/th...ory/...
@ -49,9 +51,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python CLI utility for creating credentials for accessing S3 buckets"; description = "Python CLI utility for creating credentials for accessing S3 buckets";
mainProgram = "s3-credentials";
homepage = "https://github.com/simonw/s3-credentials"; homepage = "https://github.com/simonw/s3-credentials";
changelog = "https://github.com/simonw/s3-credentials/releases/tag/${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ techknowlogick ]; maintainers = with maintainers; [ techknowlogick ];
mainProgram = "s3-credentials";
}; };
} }