fit-trackee: relax sqlalchemy constraint

This commit is contained in:
Martin Weinelt
2024-03-06 01:47:53 +01:00
parent a5a28bc41e
commit da001b2ed6
@@ -36,9 +36,11 @@ python.pkgs.buildPythonApplication rec {
};
postPatch = ''
substituteInPlace pyproject.toml --replace psycopg2-binary psycopg2 \
--replace 'flask = "^3.0.2"' 'flask = "*"' \
--replace 'pyopenssl = "^24.0.0"' 'pyopenssl = "*"'
substituteInPlace pyproject.toml \
--replace-fail psycopg2-binary psycopg2 \
--replace-fail 'flask = "^3.0.2"' 'flask = "*"' \
--replace-fail 'pyopenssl = "^24.0.0"' 'pyopenssl = "*"' \
--replace-fail 'sqlalchemy = "=1.4.51"' 'sqlalchemy = "*"'
'';
nativeBuildInputs = [