Chris McDonough

Results 72 comments of Chris McDonough

The simplest possible repro of the issue is this (my foundry-devenv repo fork "simplify-bug-repro" branch has a devenv.nix that incudes only the remote flake as a package): ``` [chrism@optinix:~/projects]$ git...

> It seems this varies. I've seen devenv mistakenly look for a `.devenv.flake.nix` in not just nixpkgs, but also [flake-parts](https://github.com/hercules-ci/flake-parts). I think maybe we're looking for a `.devenv.flake.nix` when we...

There must be some implicit thing that is consuming `.devenv.flake.nix` because it's unreferenced in devenv's source other than creating it. Apologies if this is a FAQ but is there some...

> At any rate, our issues are likely in the patched-up Nix that it seems devenv uses for evaluation, perhaps in the embedded Nix code for `libexpr`. Oh geez, well-spotted.

In reality, given how Nix works, I think mixing of Nix Python packages and pip-installed Python packages probably has to be supported. Rationale: half the world uses databases with binary...

For the record, the fix is to change: nix-build -I nixpkgs=/nixpkgs -A hello To: nix-build -I nixpkgs=/nixpkgs -A hello nixpkgs/default.nix I'm not sure where in the nixpkgs repository to change...

Let's see if we can't work this out in the particular consumer of Peppercorn first.

This was / is-being worked on in https://github.com/Themanwithoutaplan/pyramid_debugtoolbar and/or https://github.com/marcofalcioni/pyramid_debugtoolbar

This stanza looks suspicious: https://github.com/Pylons/pyramid_debugtoolbar/blob/master/pyramid_debugtoolbar/toolbar.py#L196