File tree Expand file tree Collapse file tree 2 files changed +13
-8
lines changed
pkgs/development/python-modules Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 5151
5252buildPythonPackage 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 = [
You can’t perform that action at this time.
0 commit comments