Viktor Kronvall
Viktor Kronvall
> I'd be happy to, is there a reason why just doing "${thisflake}/path/to/module.nix" doesn't suffice? It would probably suffice, but I think it would be a lot more convenient to...
I don't know which is the offending package but it looks like this is the actual error: ``` error: sphinx-7.2.6 not supported for interpreter python3.8 ``` EDIT: That's only the...
@charliermarsh Are you planning on creating a new format or do you plan to export to `poetry.lock` or `pdm.lock`? I would personally be very grateful if you would target `poetry.lock`...
I think the suggestion by @inoa-jboliveira would be a great intermediate step to getting cross-platform support for lock files. I would like to suggest to using the first two parts...
@hauntsaninja In addition to the above list of nice properties to have in a lock file I'd like to add: 5. The lock file should store enough information so that...
@jamesdbrock I think if we want the render context to be explicit I think we should instead pass it as an argument to the `@component` decorator and construct it inside...
I would also like the `@component` to return the `Element` but I can't think of a good way to do so if we have render contexts with the `with` statement...
Half-baked idea: Can we somehow combine the `__call__` style with the `with` style? I'm thinking something along these lines: ```Python def complicated_tree(): with put(View()) as root: for text in texts:...
We don't actually need any TreeBuilder... ```Python def complicated_tree(): with View() as root: for text in texts: root(Label(text)) return root with View() as root: if has_error: root(Label("asd")) return root( Label("asd"),...
@jamesdbrock JavaScript has conditional expressions though.