lol

python3Packages.build: adjust meta

authored by

Fabian Affolter and committed by
Jonathan Ringer
5adc098c 445a3f54

+9 -3
+9 -3
pkgs/development/python-modules/build/default.nix
··· 39 39 # No tests in archive 40 40 doCheck = false; 41 41 42 - meta = { 43 - description = "A simple, correct PEP517 package builder"; 44 - license = lib.licenses.mit; 42 + meta = with lib; { 43 + description = "Simple, correct PEP517 package builder"; 44 + longDescription = '' 45 + build will invoke the PEP 517 hooks to build a distribution package. It 46 + is a simple build tool and does not perform any dependency management. 47 + ''; 48 + homepage = "https://github.com/pypa/build"; 49 + maintainers = with maintainers; [ fab ]; 50 + license = licenses.mit; 45 51 }; 46 52 }