mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11: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
15 lines
326 B
TOML
15 lines
326 B
TOML
[tool.poetry]
|
|
name = "path_deps_develop"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.6"
|
|
dep1 = {path = "dep1", develop = true}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|