about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-04-19 10:41:12 -0500
committerWill Dietz <w@wdtz.org>2018-04-19 10:41:12 -0500
commit4f273627a1c51355d5c779d04a134a845adc4d18 (patch)
treec3c6e0223d54db73de9514269863fb698cfbe1d3 /pkgs/development
parente821f40c26b4477a2dba682d2b465654c9667ed1 (diff)
downloadnixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar.gz
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar.bz2
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar.lz
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar.xz
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.tar.zst
nixlib-4f273627a1c51355d5c779d04a134a845adc4d18.zip
tree-wide: fix instance of "meta.maintainer" -> "meta.maintainers"
Encountered one of these when using check-meta, did a quick
search to find other instances.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/yolk/default.nix2
-rw-r--r--pkgs/development/python-modules/zipfile36/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/yolk/default.nix b/pkgs/development/python-modules/yolk/default.nix
index 958fcd72f84a..6e05b6ced043 100644
--- a/pkgs/development/python-modules/yolk/default.nix
+++ b/pkgs/development/python-modules/yolk/default.nix
@@ -17,7 +17,7 @@ buildPythonApplication rec {
   meta = {
     description = "Command-line tool for querying PyPI and Python packages installed on your system";
     homepage = https://github.com/cakebread/yolk;
-    maintainer = with maintainers; [];
+    maintainers = with maintainers; [];
     license = licenses.bsd3;
   };
 }
diff --git a/pkgs/development/python-modules/zipfile36/default.nix b/pkgs/development/python-modules/zipfile36/default.nix
index 0915eb002b79..2929afed1cd3 100644
--- a/pkgs/development/python-modules/zipfile36/default.nix
+++ b/pkgs/development/python-modules/zipfile36/default.nix
@@ -28,6 +28,6 @@ buildPythonPackage rec {
     description = "Read and write ZIP files - backport of the zipfile module from Python 3.6";
     homepage = https://gitlab.com/takluyver/zipfile36;
     license = lib.licenses.psfl;
-    maintainer = lib.maintainers.fridh;
+    maintainers = lib.maintainers.fridh;
   };
-}
\ No newline at end of file
+}