summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2020-12-25 21:01:33 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-23 19:07:57 -0800
commit5adc098c1ddd160d6669dd8abcba9d4cccdf87f4 (patch)
tree454968675072c5e501013cf15a544094631ac188
parent445a3f548bd7fdba7ca9521a30f6eb15b6e4ac88 (diff)
python3Packages.build: adjust meta
-rw-r--r--pkgs/development/python-modules/build/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix
index 3433dad0e7730..b7ae09d1f4968 100644
--- a/pkgs/development/python-modules/build/default.nix
+++ b/pkgs/development/python-modules/build/default.nix
@@ -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;
   };
 }