python3Packages.build: adjust meta

This commit is contained in:
Fabian Affolter 2020-12-25 21:01:33 +01:00 committed by Jonathan Ringer
parent 445a3f548b
commit 5adc098c1d

View file

@ -39,8 +39,14 @@ buildPythonPackage rec {
# No tests in archive
doCheck = false;
meta = {
description = "A simple, correct PEP517 package builder";
license = lib.licenses.mit;
meta = with lib; {
description = "Simple, correct PEP517 package builder";
longDescription = ''
build will invoke the PEP 517 hooks to build a distribution package. It
is a simple build tool and does not perform any dependency management.
'';
homepage = "https://github.com/pypa/build";
maintainers = with maintainers; [ fab ];
license = licenses.mit;
};
}