summary refs log tree commit diff
path: root/pkgs/development/python-modules/apache-airflow
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-06-04 21:15:58 -0400
committerJon <jonringer@users.noreply.github.com>2020-06-05 16:38:59 -0700
commit726060deafc39394e2d7c22275f0dc9eb254d0e5 (patch)
tree7397ee052d2d200f5a3cb7ce344c83968487bb04 /pkgs/development/python-modules/apache-airflow
parent98ddb40d177187a787618a9c159bb3f1a9dda36e (diff)
downloadnixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar.gz
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar.bz2
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar.lz
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar.xz
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.tar.zst
nixpkgs-726060deafc39394e2d7c22275f0dc9eb254d0e5.zip
pythonPackages.apache-airflow: disable for python 3.8
Diffstat (limited to 'pkgs/development/python-modules/apache-airflow')
-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 706648f56a3..f8ef6b9492a 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 ];
   };
 }