mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
Add myself as (additional) maintainer to all python packages.
This commit is contained in:
parent
9c2bc27eb2
commit
a865154f62
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user