Skip to content

Commit aa78887

Browse files
authored
python313Packages.reflex: 0.7.6 -> 0.7.7 (#399474)
2 parents e52369a + 5d6c113 commit aa78887

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

pkgs/development/python-modules/reflex-hosting-cli/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ buildPythonPackage rec {
2828
hash = "sha256-kp2S3xnclMktEi6aqMBahQVZQeLriSigq77mRu+7A9I=";
2929
};
3030

31-
pythonRelaxDeps = [ "pipdeptree" ];
31+
pythonRelaxDeps = [
32+
"rich"
33+
"pipdeptree"
34+
];
3235

3336
build-system = [ poetry-core ];
3437

pkgs/development/python-modules/reflex/default.nix

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,26 +51,28 @@
5151

5252
buildPythonPackage rec {
5353
pname = "reflex";
54-
version = "0.7.6";
54+
version = "0.7.7";
5555
pyproject = true;
5656

5757
src = fetchFromGitHub {
5858
owner = "reflex-dev";
5959
repo = "reflex";
6060
tag = "v${version}";
61-
hash = "sha256-LwonbORSoNKi1dHmKxjI2H3G+ZtEGFSpQGwPi/2lRv4=";
61+
hash = "sha256-27sgU9ugSkStDOg64W1RgiqmlbOzrdxg7kz2AztfERA=";
6262
};
6363

64+
# 'rich' is also somehow checked when building the wheel,
65+
# pythonRelaxDepsHook modifies the wheel METADATA in postBuild
66+
pypaBuildFlags = [ "--skip-dependency-check" ];
67+
6468
pythonRelaxDeps = [
69+
# needed
70+
"rich"
71+
# preventative
6572
"fastapi"
6673
"gunicorn"
6774
];
6875

69-
pythonRemoveDeps = [
70-
"setuptools"
71-
"build"
72-
];
73-
7476
build-system = [ hatchling ];
7577

7678
dependencies = [

0 commit comments

Comments
 (0)