From 42eece04e4ce4c7cc58f8c53688ad4ed7fc98381 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 11 Nov 2017 13:37:21 +0100 Subject: [PATCH] python.pkgs.buildPythonPackage: meta.maintainers: don't add chaoflow --- .../interpreters/python/mk-python-derivation.nix | 8 ++------ 1 file 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 386875a0ab4..18d59d2189f 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; })