about summary refs log tree commit diff
path: root/pkgs/development/python-modules/editables
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-18 00:14:33 +0200
committerGitHub <noreply@github.com>2021-07-18 00:14:33 +0200
commit24f72b6152bf9f684b90f0461430ba50054352f1 (patch)
tree0aa6bfdafc5c900f46101b345e7c616c17dfd5fc /pkgs/development/python-modules/editables
parentb59c06dc92f8d03660eb4155754d93a6c34cda83 (diff)
python3Packages.editables: cleanup (#130476)
Diffstat (limited to 'pkgs/development/python-modules/editables')
-rw-r--r--pkgs/development/python-modules/editables/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/editables/default.nix b/pkgs/development/python-modules/editables/default.nix
index 9a3bac5abda59..ee902d772c99f 100644
--- a/pkgs/development/python-modules/editables/default.nix
+++ b/pkgs/development/python-modules/editables/default.nix
@@ -20,9 +20,12 @@ buildPythonPackage rec {
   # Tests not included in archive.
   doCheck = false;
 
-  meta = {
+  pythonImportsCheck = [ "editables" ];
+
+  meta = with lib; {
     description = "Editable installations";
-    homepage = https://github.com/pfmoore/editables;
-    license = lib.licenses.mit;
+    maintainers = with maintainers; [ ];
+    homepage = "https://github.com/pfmoore/editables";
+    license = licenses.mit;
   };
 }