1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 01:11:02 +03:00

python3Packages.apache-airflow: no-op cleanups to drv file

Consistently indent with 2 spaces and cleanup the meta by quoting it for
https://github.com/NixOS/rfcs/pull/45
This commit is contained in:
Benjamin Hipple 2020-03-27 21:05:53 -04:00
parent ae6bdcc535
commit a4a00ca3cc

View file

@ -134,7 +134,6 @@ buildPythonPackage rec {
]; ];
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "flask>=1.1.0, <2.0" "flask" \ --replace "flask>=1.1.0, <2.0" "flask" \
--replace "jinja2>=2.10.1, <2.11.0" "jinja2" \ --replace "jinja2>=2.10.1, <2.11.0" "jinja2" \
@ -184,8 +183,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Programmatically author, schedule and monitor data pipelines"; description = "Programmatically author, schedule and monitor data pipelines";
homepage = http://airflow.apache.org/; homepage = "http://airflow.apache.org/";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.costrouc maintainers.ingenieroariel ]; maintainers = with maintainers; [ costrouc ingenieroariel ];
}; };
} }