pythonPackages.apache-airflow: disable for python 3.8
This commit is contained in:
parent
98ddb40d17
commit
726060deaf
@ -52,13 +52,16 @@
|
|||||||
, typing
|
, typing
|
||||||
, nose
|
, nose
|
||||||
, python
|
, python
|
||||||
, isPy3k
|
, pythonOlder
|
||||||
|
, pythonAtLeast
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "apache-airflow";
|
pname = "apache-airflow";
|
||||||
version = "1.10.5";
|
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 {
|
src = fetchFromGitHub rec {
|
||||||
owner = "apache";
|
owner = "apache";
|
||||||
@ -189,6 +192,6 @@ buildPythonPackage rec {
|
|||||||
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 = with maintainers; [ costrouc ingenieroariel ];
|
maintainers = with maintainers; [ bhipple costrouc ingenieroariel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user