dream2nix
dream2nix copied to clipboard
Simplified nix packaging for various programming language ecosystems [maintainer=@DavHau]
## Reproducer: ```shell $ cd examples/python_pip-freeze $ nix build .#devShells.x86_64-linux.default warning: Git tree '/home/dream2nix' is dirty error: builder for '/nix/store/fsxzfadk45m01l46cp8nrm4f4dvrp9ks-python3.10-default.drv' failed with exit code 1; last 10 log lines: >...
I get the following error when running `nix develop` on current `main` in the `examples/packages/languages/python-local-development/` directory: ```shell [~/dream2nix/examples/packages/languages/python-local-development]$ nix develop Error: The python dependency charset-normalizer of mytool is configured to...
In `examples/packages/languages/python-local-development/pyproject.toml`, the dependencies are: ```toml dependencies = [ "requests", "click @ git+https://github.com/pallets/click.git@main" ] ``` This builds just fine, and also this seems to work: ```toml dependencies = [ "requests",...
I couldn't find other reports of this, so maybe I'm just holding it wrong, but after switching to the pdm module I started getting this traceback when I enter a...
I doubt this is an ideal implementation, but I'm hoping that an imperfect incremental improvement to a WIP module is acceptable :) When I took a look at switching a...
I'm not sure if this is expected behavior, a pdm problem, a sign we're holding pdm wrong, or a sign I'm holding dream2nix wrong--but I noticed that new/removed/renamed groups added...
When your project has editable dev dependencies, you can't build it with d2n: ``` pdm init # respond pdm add --dev -e ./sub-dep nix build .#my-package.config.groups.dev.sub-dep.1 # asuming you already...
Just opening this to document trouble I had in case it helps someone save a few days of flailing--I don't have enough perspective on what kinds of problems were caused...
Hi, I want to use nix flakes for a develop environment. The cli tool (dagster) can be installed via pip. I am able to set everything up - and the...
Howdy :wave: I'm trying to add [object-store-python](https://github.com/roeap/object-store-python) as a dependency that will build from source as they haven't released a new pypi version. Is this possible with the current pip...