mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00

See these docs: 99c7956835/README.md (L86)
They say that any dependency passed as `null` is forced to be non editable, even if it is marked as `develop = true` in `pyproject.toml`.
However, this was not being the case.
Added a test to prove the need for the fix.
@moduon MT-83
6 lines
101 B
Python
6 lines
101 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="dep1",
|
|
packages=find_packages(),
|
|
)
|