mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
abdf5dc772
It is is now provided automatically, when `pythonRelaxDeps` or `pythonRemoveDeps` is defined through `mk-python-derivation`.
57 lines
1 KiB
Nix
57 lines
1 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, kubernetes-helm
|
|
, kind
|
|
, docker
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "airlift";
|
|
pyproject = true;
|
|
version = "0.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-JcW2FXl+SrdveRmG5bD1ttf6F3LwvGZQF4ZCTpDpPa8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/argparse/d' pyproject.toml
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"hiyapyco"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
python3.pkgs.poetry-core
|
|
];
|
|
|
|
buildInputs = [
|
|
kubernetes-helm
|
|
kind
|
|
docker
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
halo
|
|
pyyaml
|
|
hiyapyco
|
|
jinja2
|
|
dotmap
|
|
requests
|
|
];
|
|
pythonImportsCheck = [
|
|
"airlift"
|
|
];
|
|
meta = with lib; {
|
|
description = "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";
|
|
};
|
|
}
|