Unverified Commit f0423aa6 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python314Packages.roadrecon: relax marshmallow (#479679)

parents 61cb9fe4 daf099e1
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -15,17 +15,20 @@
  sqlalchemy,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "roadrecon";
  version = "1.7.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    inherit (finalAttrs) pname version;
    hash = "sha256-fvfwgUqVr74JdL3dteX0UXbALva3vWQWEpotk8QQAiI=";
  };

  pythonRelaxDeps = [ "flask" ];
  pythonRelaxDeps = [
    "marshmallow"
    "flask"
  ];

  build-system = [ setuptools ];

@@ -53,4 +56,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})