infisicalsdk: init at 1.0.8 (#405924)

This commit is contained in:
Aleksana
2025-05-23 10:17:52 +08:00
committed by GitHub
2 changed files with 43 additions and 0 deletions
+5
View File
@@ -2135,6 +2135,11 @@
githubId = 56650223;
name = "Artturi N";
};
artur-sannikov = {
name = "Artur Sannikov";
github = "artur-sannikov";
githubId = 40318410;
};
arturcygan = {
email = "arczicygan@gmail.com";
github = "arcz";
+38
View File
@@ -0,0 +1,38 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonPackage rec {
pname = "infisicalsdk";
version = "1.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "Infisical";
repo = "python-sdk-official";
tag = "v${version}";
hash = "sha256-C8pHypKVPISDGGUlC2LXP4MPoae/ZS7Mb92yN7+VoPM=";
};
build-system = [ python3Packages.setuptools ];
dependencies = with python3Packages; [
python-dateutil
aenum
requests
boto3
botocore
];
doCheck = false;
pythonImportsCheck = [ "infisical_sdk" ];
meta = {
homepage = "https://github.com/Infisical/python-sdk-official";
description = "Infisical Python SDK";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ artur-sannikov ];
};
}