infisicalsdk: init at 1.0.8

Co-authored-by: emaryn <197520219+emaryn@users.noreply.github.com>

Update pkgs/by-name/in/infisicalsdk/package.nix

Co-authored-by: emaryn <197520219+emaryn@users.noreply.github.com>

add recommendations from Issue

fix maintainer typo
This commit is contained in:
Artur Sannikov 2025-05-10 18:38:41 +03:00
parent 1e38715d73
commit a9cc4571d9
No known key found for this signature in database
2 changed files with 43 additions and 0 deletions

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";

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 ];
};
}