Skip to content

Commit 10670c5

Browse files
committed
apache-airflow.pythonPackages.flask-session: downgrade to 0.5.0 release
1 parent d8d8c4c commit 10670c5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pkgs/servers/apache-airflow/default.nix

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,20 @@ let
7171
};
7272
nativeBuildInputs = [ pySelf.setuptools ];
7373
});
74+
flask-session = pySuper.flask-session.overridePythonAttrs (o: rec {
75+
version = "0.5.0";
76+
src = fetchFromGitHub {
77+
owner = "pallets-eco";
78+
repo = "flask-session";
79+
rev = "refs/tags/${version}";
80+
hash = "sha256-t8w6ZS4gBDpnnKvL3DLtn+rRLQNJbrT2Hxm4f3+a3Xc=";
81+
};
82+
pytestFlagsArray = [
83+
"-k"
84+
"'null_session or filesystem_session'"
85+
];
86+
disabledTestPaths = [];
87+
});
7488
# a knock-on effect from overriding the sqlalchemy version
7589
flask-sqlalchemy = pySuper.flask-sqlalchemy.overridePythonAttrs (o: {
7690
src = fetchPypi {

0 commit comments

Comments
 (0)