depot/third_party/nixpkgs/pkgs/development/python-modules/s3-credentials/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

56 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, click
, click-default-group
, boto3
, pytestCheckHook
, hypothesis
, pytest-mock
, moto
}:
buildPythonPackage rec {
pname = "s3-credentials";
version = "0.14";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-vKOcOSt9vscj5ixrHZGL6PRun/x38JLbni75nw2YAbg=";
};
propagatedBuildInputs = [
boto3
click
click-default-group
];
nativeCheckInputs = [
hypothesis
moto
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [
"s3_credentials"
];
disabledTests = [
# AssertionError: assert 'directory/th...ory/...
"test_put_objects"
];
meta = with lib; {
description = "Python CLI utility for creating credentials for accessing S3 buckets";
homepage = "https://github.com/simonw/s3-credentials";
license = licenses.asl20;
maintainers = with maintainers; [ techknowlogick ];
};
}