apache-airflow: 1.10.3 -> 1.10.5, enable python

Includes misc fixes suggested during the PR process.
This commit is contained in:
Ariel
2019-11-15 16:14:25 -05:00
parent effe7f8a09
commit 7af3a955c9
10 changed files with 84 additions and 115 deletions

View File

@@ -3,13 +3,13 @@
, fetchPypi
, flask
, python3-openid
, python-openid
, isPy27
, isPy3k
}:
buildPythonPackage rec {
pname = "flask-openid";
version = "1.2.5";
disable = !isPy3k;
src = fetchPypi {
pname = "Flask-OpenID";
@@ -19,7 +19,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [
flask
] ++ (if isPy27 then [ python-openid ] else [ python3-openid ]);
python3-openid
];
# no tests for repo...
doCheck = false;