Check pyproject for description & homepage attrs

These don't always exist.
This commit is contained in:
adisbladis 2020-05-20 15:26:22 +01:00
parent 1b3d0349b4
commit cd5cd15526
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -256,8 +256,11 @@ let
) { inherit app; };
};
meta = meta // {
inherit (pyProject.tool.poetry) description homepage;
meta = meta // lib.optionalAttrs (lib.hasAttr "description" pyProject.tool.poetry) {
inherit (pyProject.tool.poetry) description;
} // lib.optionalAttrs (lib.hasAttr "homepage" pyProject.tool.poetry) {
inherit (pyProject.tool.poetry) homepage;
} // {
inherit (py.meta) platforms;
license = getLicenseBySpdxId (pyProject.tool.poetry.license or "unknown");
};