Skip to content

Commit

Permalink
python3Packages.kestra: init at 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DataHearth committed Dec 16, 2024
1 parent 21d7df2 commit 77170f1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/development/python-modules/kestra/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "kestra";
version = "0.20.0";
pyproject = true;

src = fetchPypi {
inherit pname version;
hash = "sha256-j2ASwbleCsMrqhefhdBwXfp6JA+tBr1CX/nIKO4sWZI=";
};

build-system = [
setuptools
];

dependencies = [
requests
];

pythonImportsCheck = [
"kestra"
];

meta = {
description = "Kestra is an 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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 77170f1

Please sign in to comment.