Unverified Commit da001b2e authored by Martin Weinelt's avatar Martin Weinelt
Browse files

fit-trackee: relax sqlalchemy constraint

parent a5a28bc4
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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 = [