about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apache-airflow/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-07 09:25:12 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-07 09:25:12 +0200
commit6b8223e634b1326f448b870351ae53a0607aa043 (patch)
treecc1754cc8e195a5b84bdadf0d01db22f73da25af /pkgs/development/python-modules/apache-airflow/default.nix
parent43f71029cc6b18c1b4db4d01b35dbb30425c2f4e (diff)
parent1c3e3e081c22ba4dbf8f1b8cb31a55830596b838 (diff)
downloadnixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar.gz
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar.bz2
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar.lz
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar.xz
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.tar.zst
nixlib-6b8223e634b1326f448b870351ae53a0607aa043.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules/apache-airflow/default.nix')
-rw-r--r--pkgs/development/python-modules/apache-airflow/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/apache-airflow/default.nix b/pkgs/development/python-modules/apache-airflow/default.nix
index 706648f56a31..f8ef6b9492a3 100644
--- a/pkgs/development/python-modules/apache-airflow/default.nix
+++ b/pkgs/development/python-modules/apache-airflow/default.nix
@@ -52,13 +52,16 @@
 , typing
 , nose
 , python
-, isPy3k
+, pythonOlder
+, pythonAtLeast
 }:
 
 buildPythonPackage rec {
   pname = "apache-airflow";
   version = "1.10.5";
-  disabled = (!isPy3k);
+  # Upstream does not yet support python 3.8
+  # https://github.com/apache/airflow/issues/8674
+  disabled = pythonOlder "3.5" || pythonAtLeast "3.8";
 
   src = fetchFromGitHub rec {
     owner = "apache";
@@ -189,6 +192,6 @@ buildPythonPackage rec {
     description = "Programmatically author, schedule and monitor data pipelines";
     homepage = "http://airflow.apache.org/";
     license = licenses.asl20;
-    maintainers = with maintainers; [ costrouc ingenieroariel ];
+    maintainers = with maintainers; [ bhipple costrouc ingenieroariel ];
   };
 }