about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plac
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-09-18 10:22:27 +0100
committerSergei Trofimovich <slyich@gmail.com>2021-09-19 21:06:14 +0100
commit3ec1a47f2e1f906915eed76d13dc115a7bc2b0d1 (patch)
tree2a5a463c6d45b1e37ba397b4b780234dcfe2712f /pkgs/development/python-modules/plac
parente89c396d660e39d71e6a8ab88175405e75952138 (diff)
treewide: remove @sdll from maintainers
sdll github handle returns 404. Sasha agreed to remove @sdll
maintainer entry.
Diffstat (limited to 'pkgs/development/python-modules/plac')
-rw-r--r--pkgs/development/python-modules/plac/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/plac/default.nix b/pkgs/development/python-modules/plac/default.nix
index bf66f7d01f193..2bd50d87dc0ba 100644
--- a/pkgs/development/python-modules/plac/default.nix
+++ b/pkgs/development/python-modules/plac/default.nix
@@ -13,14 +13,14 @@ buildPythonPackage rec {
   };
 
   checkPhase = ''
-      cd doc
-      ${python.interpreter} -m unittest discover -p "*test_plac*"
-    '';
+    cd doc
+    ${python.interpreter} -m unittest discover -p "*test_plac*"
+  '';
 
   meta = with lib; {
     description = "Parsing the Command Line the Easy Way";
     homepage = "https://github.com/micheles/plac";
     license = licenses.bsdOriginal;
-    maintainers = with maintainers; [ sdll ];
-    };
+    maintainers = with maintainers; [ ];
+  };
 }