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
1 changed files with 24 additions and 21 deletions

View File

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