python3Packages.kestra: init at 0.20.0

This commit is contained in:
DataHearth
2025-01-13 17:13:08 +01:00
parent 21d7df2cae
commit 5b5048daf4
2 changed files with 55 additions and 0 deletions
@@ -0,0 +1,53 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
pytestCheckHook,
requests-mock,
}:
buildPythonPackage rec {
pname = "kestra";
version = "0.20.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kestra-io";
repo = "libs";
rev = "v${version}";
hash = "sha256-Ck0eM3YZRRoORN77e46J9CG5Uj6Y7fNdVWAErT7LbpA=";
};
sourceRoot = "${src.name}/python";
build-system = [
setuptools
];
preBuild = ''
# Required for building the library (https://github.com/kestra-io/libs/blob/v0.20.0/python/setup.py#L20)
# The path resolve to CWD, so README.md isn't picked in the parent folder
ln -s ../README.md README.md
'';
dependencies = [
requests
];
pythonImportsCheck = [
"kestra"
];
nativeCheckInputs = [
pytestCheckHook
requests-mock
];
meta = {
description = "Infinitely scalable orchestration and scheduling platform, creating, running, scheduling, and monitoring millions of complex pipelines";
homepage = "https://github.com/kestra-io/libs";
license = lib.licenses.apsl20;
maintainers = with lib.maintainers; [ DataHearth ];
};
}
+2
View File
@@ -6925,6 +6925,8 @@ self: super: with self; {
kerberos = callPackage ../development/python-modules/kerberos { };
kestra = callPackage ../development/python-modules/kestra { };
keyboard = callPackage ../development/python-modules/keyboard { };
keyring = callPackage ../development/python-modules/keyring { };