mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #264166 from jl178/python3Packages.airlift0.3.0
airlift: init at 0.3.0
This commit is contained in:
commit
ad83c5cf4b
@ -8370,6 +8370,12 @@
|
||||
githubId = 3081095;
|
||||
name = "Jürgen Keck";
|
||||
};
|
||||
jl178 = {
|
||||
email = "jeredlittle1996@gmail.com";
|
||||
github = "jl178";
|
||||
githubId = 72664723;
|
||||
name = "Jered Little";
|
||||
};
|
||||
jlamur = {
|
||||
email = "contact@juleslamur.fr";
|
||||
github = "jlamur";
|
||||
|
48
pkgs/by-name/ai/airlift/package.nix
Normal file
48
pkgs/by-name/ai/airlift/package.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchPypi
|
||||
, argparse
|
||||
, kubernetes-helm
|
||||
, kind
|
||||
, docker
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
|
||||
pname = "airlift";
|
||||
pyproject = true;
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-1LE3fpfX4NExJdUdSjt4BXvxQTLJ8zrRkGHkxo/6Pb8=";
|
||||
};
|
||||
buildInputs = [
|
||||
kubernetes-helm
|
||||
kind
|
||||
docker
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.poetry-core
|
||||
];
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
argparse
|
||||
halo
|
||||
pyyaml
|
||||
hiyapyco
|
||||
jinja2
|
||||
dotmap
|
||||
requests
|
||||
];
|
||||
pythonImportsCheck = [
|
||||
"airlift"
|
||||
];
|
||||
meta = with lib; {
|
||||
description = "A flexible, configuration driven CLI for Apache Airflow local development";
|
||||
homepage = "https://github.com/jl178/airlift";
|
||||
license = licenses.mit;
|
||||
changelog = "https://github.com/jl178/airlift/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ jl178 ];
|
||||
mainProgram = "airlift";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user