Unverified Commit aa78887b authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python313Packages.reflex: 0.7.6 -> 0.7.7 (#399474)

parents e52369a6 5d6c113e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -28,7 +28,10 @@ buildPythonPackage rec {
    hash = "sha256-kp2S3xnclMktEi6aqMBahQVZQeLriSigq77mRu+7A9I=";
  };

  pythonRelaxDeps = [ "pipdeptree" ];
  pythonRelaxDeps = [
    "rich"
    "pipdeptree"
  ];

  build-system = [ poetry-core ];

+9 −7
Original line number Diff line number Diff line
@@ -51,26 +51,28 @@

buildPythonPackage rec {
  pname = "reflex";
  version = "0.7.6";
  version = "0.7.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "reflex-dev";
    repo = "reflex";
    tag = "v${version}";
    hash = "sha256-LwonbORSoNKi1dHmKxjI2H3G+ZtEGFSpQGwPi/2lRv4=";
    hash = "sha256-27sgU9ugSkStDOg64W1RgiqmlbOzrdxg7kz2AztfERA=";
  };

  # 'rich' is also somehow checked when building the wheel,
  # pythonRelaxDepsHook modifies the wheel METADATA in postBuild
  pypaBuildFlags = [ "--skip-dependency-check" ];

  pythonRelaxDeps = [
    # needed
    "rich"
    # preventative
    "fastapi"
    "gunicorn"
  ];

  pythonRemoveDeps = [
    "setuptools"
    "build"
  ];

  build-system = [ hatchling ];

  dependencies = [