about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRickard Nilsson <rickynils@gmail.com>2013-01-20 16:53:21 +0100
committerRickard Nilsson <rickynils@gmail.com>2013-01-20 16:53:21 +0100
commit1886d1db6a962578bd802e820a1279b4aed3333a (patch)
tree4b938608821b25f0b972c80a837b8f8f35becc1f /pkgs/development/python-modules
parentd1c548cdd728961350f6ee4a65d597df3b1ebe61 (diff)
parente185691ced86fc517a2daea762d7d11e525c6ae8 (diff)
downloadnixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar.gz
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar.bz2
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar.lz
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar.xz
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.tar.zst
nixlib-1886d1db6a962578bd802e820a1279b4aed3333a.zip
Merge remote-tracking branch 'upstream/master' into stdenv-updates
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/generic/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix
index bc5086519d7a..adba30372861 100644
--- a/pkgs/development/python-modules/generic/default.nix
+++ b/pkgs/development/python-modules/generic/default.nix
@@ -40,6 +40,8 @@
 , preInstall ? ""
 , postInstall ? ""
 
+, meta ? {}
+
 , ... } @ attrs:
 
 # Keep extra attributes from ATTR, e.g., `patchPhase', etc.
@@ -48,6 +50,12 @@ python.stdenv.mkDerivation (attrs // {
 
   name = namePrefix + name;
 
+  # default values for maintainers and platforms
+  meta = {
+    maintainers = python.meta.maintainers;
+    platforms = python.meta.platforms;
+  } // meta;
+
   # checkPhase after installPhase to run tests on installed packages
   phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase";