lol

Merge pull request #141101 from superherointj/package-apache-airflow-2.1.4

authored by

Sandro and committed by
GitHub
d265fdf8 1512ec86

+6 -4
+5 -3
pkgs/development/python-modules/apache-airflow/default.nix
··· 64 64 }: 65 65 let 66 66 67 - version = "2.1.2"; 67 + version = "2.1.4"; 68 68 69 69 airflow-src = fetchFromGitHub rec { 70 70 owner = "apache"; 71 71 repo = "airflow"; 72 72 rev = version; 73 - sha256 = "sha256-Q0l2c1tuxcoE65zgdxnv/j1TIoQzaNoEFCYHvqN+Bzk="; 73 + sha256 = "12nxjaz4afkq30s42x3rbsci8jiw2k5zjngsc8i190fasbacbnbs"; 74 74 }; 75 75 76 76 # airflow bundles a web interface, which is built using webpack by an undocumented shell script in airflow's source tree. ··· 193 193 --replace "sqlalchemy>=1.3.18, <1.4" "sqlalchemy" \ 194 194 --replace "sqlalchemy_jsonfield~=1.0" "sqlalchemy-jsonfield" \ 195 195 --replace "werkzeug~=1.0, >=1.0.1" "werkzeug" \ 196 - --replace "itsdangerous>=1.1.0, <2.0" "itsdangerous" 196 + --replace "itsdangerous>=1.1.0, <2.0" "itsdangerous" \ 197 + --replace "python-slugify>=3.0.0,<5.0" "python-slugify" \ 198 + --replace "colorlog>=4.0.2, <6.0" "colorlog" 197 199 198 200 substituteInPlace tests/core/test_core.py \ 199 201 --replace "/bin/bash" "${stdenv.shell}"
+1 -1
pkgs/top-level/all-packages.nix
··· 892 892 893 893 airfield = callPackage ../tools/networking/airfield { }; 894 894 895 - apache-airflow = with python37.pkgs; toPythonApplication apache-airflow; 895 + apache-airflow = with python3.pkgs; toPythonApplication apache-airflow; 896 896 897 897 airsonic = callPackage ../servers/misc/airsonic { }; 898 898