Ethan Brooks

Results 55 comments of Ethan Brooks

Hmmm I took a look at the typechecker, but it wasn't exactly clear how to add `_` to the list of valid keyword arguments. Could you lend some guidance on...

Any follow up on this?

> I have a simple redirect at `docs/index.html` that contains: > > ``` > > ``` > > where one should obviously replace `{{project-name}}` with their project name. This way...

Hi iwanb thanks for the quick response. Since `clu` has so many dependencies, some of which are quite large, I am going to try to go back to `poetry2nix` for...

I am actually very close to a working implementation. The following works for me: ```nix { inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; utils.url = "github:numtide/flake-utils"; }; outputs = { self,...

Both of these fixes worked! How did you know that `mock` was a dependency of `tensorflow`?

Also, I've made some more progress toward getting `ml-collections` installed but now getting this error: ``` error: collision between `/nix/store/xcny1kcg647iclpmjss080xzrgj52isv-python3.9-optax-0.1.3/lib/python3.9/site-packages/docs/conf.py' and `/nix/store/7g5p3xfwqq4pv6g1m1f7247pnv2qblv9-python3.9-ml-collections-0.1.1/lib/python3.9/site-packages/docs/conf.py' ``` [flake.nix](https://gist.github.com/ethanabrooks/183154b66bd05c5f1911b20168838da7) [pyproject.toml](https://gist.github.com/ethanabrooks/490b47c1ef374ad0bc87c87dde473bd7) [poetry.lock](https://gist.github.com/ethanabrooks/f1eed84655cddf9066714157fc72572d)

I was able to resolve this by adding ```nix prePatch = '' export HOME=$TMPDIR; rm -rf docs/ ''; ``` under `ml-collections`. I also needed to add `doCheck = false` under...