python3Packages.poetry*: use native namespaces

This commit is contained in:
Jonathan Ringer 2021-08-29 18:42:12 -07:00 committed by Jonathan Ringer
parent fef6f602e6
commit 6e953a26b6
2 changed files with 6 additions and 0 deletions

View file

@ -53,6 +53,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "poetry.core" ];
# allow for package to use pep420's native namespaces
pythonNamespaces = [ "poetry" ];
meta = with lib; {
description = "Core utilities for Poetry";
homepage = "https://github.com/python-poetry/poetry-core/";

View file

@ -99,6 +99,9 @@ buildPythonPackage rec {
})
];
# allow for package to use pep420's native namespaces
pythonNamespaces = [ "poetry" ];
meta = with lib; {
homepage = "https://python-poetry.org/";
description = "Python dependency management and packaging made easy";