Add myself as (additional) maintainer to all python packages.

This commit is contained in:
Florian Friesdorf 2013-01-21 04:43:59 +01:00
parent 9c2bc27eb2
commit a865154f62

View File

@ -50,11 +50,13 @@ python.stdenv.mkDerivation (attrs // {
name = namePrefix + name;
# default values for maintainers and platforms
# default to python's platforms and add maintainer(s) to every
# package
meta = {
maintainers = python.meta.maintainers;
platforms = python.meta.platforms;
} // meta;
} // meta // {
maintainers = (meta.maintainers or []) ++ [ lib.maintainers.chaoflow ];
};
# checkPhase after installPhase to run tests on installed packages
phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase";