mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 22:19:17 +03:00
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:
parent
1e38715d73
commit
a9cc4571d9
2 changed files with 43 additions and 0 deletions
|
@ -2135,6 +2135,11 @@
|
||||||
githubId = 56650223;
|
githubId = 56650223;
|
||||||
name = "Artturi N";
|
name = "Artturi N";
|
||||||
};
|
};
|
||||||
|
artur-sannikov = {
|
||||||
|
name = "Artur Sannikov";
|
||||||
|
github = "artur-sannikov";
|
||||||
|
githubId = 40318410;
|
||||||
|
};
|
||||||
arturcygan = {
|
arturcygan = {
|
||||||
email = "arczicygan@gmail.com";
|
email = "arczicygan@gmail.com";
|
||||||
github = "arcz";
|
github = "arcz";
|
||||||
|
|
38
pkgs/by-name/in/infisicalsdk/package.nix
Normal file
38
pkgs/by-name/in/infisicalsdk/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue