about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-11-11 13:37:21 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-11-23 15:11:03 +0100
commit42eece04e4ce4c7cc58f8c53688ad4ed7fc98381 (patch)
treea3f609ee50e5b1e1e2275c682a00122fe1d655b4 /pkgs/development/interpreters/python
parent95443837443dc5955ff75b03757a2a12796cea9c (diff)
downloadnixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar.gz
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar.bz2
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar.lz
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar.xz
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.tar.zst
nixlib-42eece04e4ce4c7cc58f8c53688ad4ed7fc98381.zip
python.pkgs.buildPythonPackage: meta.maintainers: don't add chaoflow
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/mk-python-derivation.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix
index 386875a0ab4f..18d59d2189fa 100644
--- a/pkgs/development/interpreters/python/mk-python-derivation.nix
+++ b/pkgs/development/interpreters/python/mk-python-derivation.nix
@@ -86,13 +86,9 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "checkInputs"
     inherit pythonModule;
   } // passthru;
 
-  meta = with lib.maintainers; {
+  meta = {
     # default to python's platforms
     platforms = python.meta.platforms;
-  } // meta // {
-    # add extra maintainer(s) to every package
-    maintainers = (meta.maintainers or []) ++ [ chaoflow ];
-    # a marker for release utilities to discover python packages
     isBuildPythonPackage = python.meta.platforms;
-  };
+  } // meta;
 })