Removing FRidh as active maintainer of packages

In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
This commit is contained in:
Frederik Rietdijk 2024-04-28 12:18:55 +02:00
parent 485534a59f
commit 5772ac5a75
67 changed files with 12 additions and 74 deletions

7
.github/CODEOWNERS vendored
View File

@ -13,7 +13,6 @@
# GitHub actions
/.github/workflows @NixOS/Security @Mic92 @zowoq
/.github/workflows/merge-staging @FRidh
# EditorConfig
/.editorconfig @Mic92 @zowoq
@ -125,10 +124,8 @@ nixos/modules/installer/tools/nix-fallback-paths.nix @raitobezarius @ma27
/pkgs/common-updater/scripts/update-source-version @jtojnar
# Python-related code and docs
/maintainers/scripts/update-python-libraries @FRidh
/pkgs/development/interpreters/python @FRidh
/doc/languages-frameworks/python.section.md @FRidh @mweinelt
/pkgs/development/interpreters/python/hooks @FRidh @jonringer
/doc/languages-frameworks/python.section.md @mweinelt
/pkgs/development/interpreters/python/hooks @jonringer
# Haskell
/doc/languages-frameworks/haskell.section.md @sternenseemann @maralorn @ncfavier

View File

@ -878,7 +878,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pytoolz/toolz";
description = "List processing tools and functional utilities";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}
```
@ -1013,7 +1012,6 @@ buildPythonPackage rec {
homepage = "https://github.com/ContinuumIO/datashape";
description = "A data description language";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fridh ];
};
}
```
@ -1134,7 +1132,6 @@ buildPythonPackage rec {
description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
homepage = "http://hgomersall.github.com/pyFFTW";
license = with lib.licenses; [ bsd2 bsd3 ];
maintainers = with lib.maintainers; [ fridh ];
};
}
```
@ -1494,7 +1491,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pytoolz/toolz/";
description = "List processing tools and functional utilities";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}
```

View File

@ -826,7 +826,6 @@ with lib.maintainers; {
python = {
members = [
fridh
hexa
jonringer
tjni

View File

@ -42,7 +42,6 @@ stdenv.mkDerivation rec {
meta = {
description = "User-friendly TeX/LaTeX authoring tool for the KDE desktop environment";
homepage = "https://www.kde.org/applications/office/kile/";
maintainers = with lib.maintainers; [ fridh ];
license = lib.licenses.gpl2Plus;
mainProgram = "kile";
};

View File

@ -20,7 +20,7 @@ mkDerivation {
mainProgram = "filelight";
homepage = "https://apps.kde.org/filelight/";
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];
maintainers = with lib.maintainers; [ vcunat ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [

View File

@ -12,7 +12,6 @@ mkDerivation {
description = "Scientific calculator";
mainProgram = "kcalc";
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [

View File

@ -77,7 +77,6 @@ mkDerivation {
description = "KDE Connect provides several features to integrate your phone and your computer";
homepage = "https://community.kde.org/KDEConnect";
license = with licenses; [ gpl2 ];
maintainers = with maintainers; [ fridh ];
mainProgram = "kdeconnect-app";
};
}

View File

@ -20,7 +20,6 @@ mkDerivation {
homepage = "https://apps.kde.org/kolourpaint/";
description = "Paint program";
mainProgram = "kolourpaint";
maintainers = [ lib.maintainers.fridh ];
license = with lib.licenses; [ gpl2 ];
};
}

View File

@ -19,7 +19,6 @@ mkDerivation {
description = "KDE wallet management tool";
mainProgram = "kwalletmanager5";
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [

View File

@ -29,7 +29,6 @@ mkDerivation {
homepage = "https://yakuake.kde.org";
description = "Quad-style terminal emulator for KDE";
mainProgram = "yakuake";
maintainers = with lib.maintainers; [ fridh ];
license = lib.licenses.gpl2;
};
}

View File

@ -350,7 +350,6 @@ in with passthru; stdenv.mkDerivation ({
'';
license = lib.licenses.psfl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ fridh ];
knownVulnerabilities = [
"Python 2.7 has reached its end of life after 2020-01-01. See https://www.python.org/doc/sunset-python-2/."
# Quote: That means that we will not improve it anymore after that day,

View File

@ -662,7 +662,6 @@ in with passthru; stdenv.mkDerivation (finalAttrs: {
license = licenses.psfl;
pkgConfigModules = [ "python3" ];
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows;
maintainers = with maintainers; [ fridh ];
mainProgram = executable;
};
})

View File

@ -53,7 +53,6 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python package for acousticians";
maintainers = with maintainers; [ fridh ];
license = with licenses; [ bsd3 ];
homepage = "https://github.com/python-acoustics/python-acoustics";
};

View File

@ -49,6 +49,5 @@ buildPythonPackage rec {
description = "File support for asyncio";
homepage = "https://github.com/Tinche/aiofiles";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -36,6 +36,5 @@ buildPythonPackage rec {
description = "Bibtex parser for Python";
homepage = "https://github.com/sciunto-org/python-bibtexparser";
license = with licenses; [ lgpl3Only /* or */ bsd3 ];
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -36,6 +36,5 @@ buildPythonPackage rec {
description = "Composable style cycles";
homepage = "https://github.com/matplotlib/cycler";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -86,6 +86,5 @@ in buildPythonPackage rec {
description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";
homepage = "https://cython.org";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -66,6 +66,5 @@ in buildPythonPackage rec {
description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";
homepage = "https://cython.org";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -47,6 +47,5 @@ buildPythonPackage rec {
homepage = "https://github.com/pytoolz/cytoolz/";
description = "Cython implementation of Toolz: High performance functional utilities";
license = licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -191,6 +191,5 @@ let self = buildPythonPackage rec {
homepage = "https://dask.org/";
changelog = "https://docs.dask.org/en/latest/changelog.html";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}; in self

View File

@ -46,6 +46,5 @@ in buildPythonPackage rec {
homepage = "https://github.com/ContinuumIO/datashape";
description = "A data description language";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -56,6 +56,5 @@ buildPythonPackage rec {
mainProgram = "flit";
homepage = "https://github.com/pypa/flit";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -75,6 +75,5 @@ buildPythonPackage rec {
homepage = "https://github.com/python-visualization/folium";
changelog = "https://github.com/python-visualization/folium/blob/v${version}/CHANGES.txt";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -70,6 +70,6 @@ buildPythonPackage rec {
homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipykernel/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ] ++ lib.teams.jupyter.members;
maintainers = lib.teams.jupyter.members;
};
}

View File

@ -66,6 +66,5 @@ buildPythonPackage rec {
homepage = "https://ipyparallel.readthedocs.io/";
changelog = "https://github.com/ipython/ipyparallel/blob/${version}/docs/source/changelog.md";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -44,6 +44,5 @@ buildPythonPackage rec {
description = "Vestigial utilities from IPython";
homepage = "https://ipython.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -112,6 +112,6 @@ buildPythonPackage rec {
homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipython/blob/${version}/docs/source/whatsnew/version${lib.versions.major version}.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor fridh ];
maintainers = with maintainers; [ bjornfor ];
};
}

View File

@ -48,6 +48,5 @@ buildPythonPackage rec {
description = "IPython HTML widgets for Jupyter";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -48,6 +48,5 @@ buildPythonPackage rec {
homepage = "https://github.com/jupyter/jupyter_client";
changelog = "https://github.com/jupyter/jupyter_client/blob/v${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -47,6 +47,6 @@ buildPythonPackage rec {
homepage = "https://lark-parser.readthedocs.io/";
changelog = "https://github.com/lark-parser/lark/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fridh drewrisinger ];
maintainers = with maintainers; [ drewrisinger ];
};
}

View File

@ -60,6 +60,5 @@ buildPythonPackage rec {
homepage = "https://github.com/pyutils/line_profiler";
changelog = "https://github.com/pyutils/line_profiler/blob/v${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -61,6 +61,5 @@ buildPythonPackage rec {
downloadPage = "https://github.com/numba/llvmlite";
homepage = "http://llvmlite.pydata.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -48,6 +48,6 @@ buildPythonPackage rec {
description = "Meson Python build backend (PEP 517)";
homepage = "https://github.com/mesonbuild/meson-python";
license = [ lib.licenses.mit ];
maintainers = with lib.maintainers; [ fridh doronbehar ];
maintainers = with lib.maintainers; [ doronbehar ];
};
}

View File

@ -41,6 +41,5 @@ buildPythonPackage rec {
description = "Create pep517 compliant packages from the meson build system";
homepage = "https://gitlab.com/thiblahute/mesonpep517";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.fridh ];
};
}

View File

@ -23,6 +23,5 @@ buildPythonPackage rec {
homepage = "https://github.com/mrocklin/multipledispatch/";
description = "A relatively sane approach to multiple dispatch in Python";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -54,6 +54,6 @@ buildPythonPackage rec {
mainProgram = "jupyter-trust";
homepage = "https://jupyter.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh globin ];
maintainers = with lib.maintainers; [ globin ];
};
}

View File

@ -55,6 +55,5 @@ buildPythonPackage rec {
meta = {
description = "API for interacting with the NI-DAQmx driver";
license = [ lib.licenses.mit ];
maintainers = [ lib.maintainers.fridh ];
};
}

View File

@ -24,6 +24,5 @@ buildPythonPackage rec {
license = lib.licenses.lgpl21;
description = "Exclude specific directories from nosetests runs";
homepage = "https://github.com/kgrandis/nose-exclude";
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -139,6 +139,5 @@ in buildPythonPackage rec {
homepage = "https://numba.pydata.org/";
license = licenses.bsd2;
mainProgram = "numba";
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -186,6 +186,5 @@ in buildPythonPackage rec {
mainProgram = "f2py";
homepage = "https://numpy.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -48,7 +48,6 @@ buildPythonPackage rec {
description = "ONNX Converter and Optimization Tools";
homepage = "https://github.com/microsoft/onnxconverter-common";
changelog = "https://github.com/microsoft/onnxconverter-common/releases/tag/v${version}";
maintainers = with lib.maintainers; [ fridh ];
license = with lib.licenses; [ mit ];
};
}

View File

@ -70,5 +70,5 @@ buildPythonPackage {
# sympy
];
meta = onnxruntime.meta // { maintainers = with lib.maintainers; [ fridh ]; };
meta = onnxruntime.meta;
}

View File

@ -266,7 +266,7 @@ let pandas = buildPythonPackage rec {
Python, providing labeled data structures similar to R data.frame
objects, statistical functions, and much more.
'';
maintainers = with maintainers; [ raskin fridh knedlsepp ];
maintainers = with maintainers; [ raskin knedlsepp ];
};
};
in pandas

View File

@ -27,6 +27,5 @@ buildPythonPackage rec {
description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
homepage = "http://hgomersall.github.com/pyFFTW/";
license = with licenses; [ bsd2 bsd3 ];
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -69,6 +69,5 @@ in buildPythonPackage rec {
description = "Python wrapper for OpenCL";
homepage = "https://github.com/pyopencl/pyopencl";
license = licenses.mit;
maintainers = [ maintainers.fridh ];
};
}

View File

@ -48,6 +48,5 @@ buildPythonPackage rec {
homepage = "https://github.com/FFY00/python-pyproject-metadata";
changelog = "https://github.com/FFY00/python-pyproject-metadata/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -54,7 +54,6 @@ buildPythonPackage rec {
mainProgram = "jupyter-qtconsole";
homepage = "https://qtconsole.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
platforms = platforms.unix;
};
}

View File

@ -38,6 +38,5 @@ buildPythonPackage rec {
description = "A docutils-compatibility bridge to CommonMark";
homepage = "https://github.com/rtfd/recommonmark";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -38,7 +38,6 @@ buildPythonPackage rec {
description = "GPGPU algorithms for PyCUDA and PyOpenCL";
homepage = "https://github.com/fjarri/reikna";
license = licenses.mit;
maintainers = [ maintainers.fridh ];
};

View File

@ -27,6 +27,5 @@ buildPythonPackage rec {
description = "Download files using requests and save them to a target path";
homepage = "https://www.github.com/takluyver/requests_download";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.fridh ];
};
}

View File

@ -203,6 +203,6 @@ in buildPythonPackage {
downloadPage = "https://github.com/scipy/scipy";
homepage = "https://www.scipy.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh doronbehar ];
maintainers = with maintainers; [ doronbehar ];
};
}

View File

@ -70,6 +70,5 @@ buildPythonPackage rec {
homepage = "https://seaborn.pydata.org/";
changelog = "https://github.com/mwaskom/seaborn/blob/master/doc/whatsnew/${src.rev}.rst";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -51,7 +51,6 @@ buildPythonPackage rec {
meta = {
description = "Convert scikit-learn models to ONNX";
maintainers = with lib.maintainers; [ fridh ];
license = with lib.licenses; [ asl20 ];
};
}

View File

@ -38,6 +38,5 @@ buildPythonPackage rec {
description = "Play and Record Sound with Python";
homepage = "http://python-sounddevice.rtfd.org/";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -37,6 +37,5 @@ buildPythonPackage rec {
description = "An audio library based on libsndfile, CFFI and NumPy";
license = lib.licenses.bsd3;
homepage = "https://github.com/bastibe/python-soundfile";
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -56,6 +56,5 @@ buildPythonPackage rec {
homepage = "https://www.github.com/statsmodels/statsmodels";
changelog = "https://github.com/statsmodels/statsmodels/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -38,6 +38,5 @@ buildPythonPackage rec {
mainProgram = "tabulate";
homepage = "https://github.com/astanin/python-tabulate";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -78,7 +78,6 @@ buildPythonPackage rec {
description = "Python interface to the TileDB storage manager";
homepage = "https://github.com/TileDB-Inc/TileDB-Py";
license = licenses.mit;
maintainers = with maintainers; [ fridh ];
# tiledb/core.cc:556:30: error: struct std::array<long unsigned int, 2> has no member named second
broken = true;
};

View File

@ -25,6 +25,5 @@ buildPythonPackage rec {
homepage = "https://github.com/pytoolz/toolz";
description = "List processing tools and functional utilities";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -67,6 +67,5 @@ buildPythonPackage rec {
homepage = "https://github.com/tqdm/tqdm";
changelog = "https://tqdm.github.io/releases/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -49,6 +49,5 @@ buildPythonPackage rec {
description = "Traitlets Python config system";
homepage = "https://github.com/ipython/traitlets";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -49,6 +49,5 @@ buildPythonPackage rec {
mainProgram = "twine";
homepage = "https://github.com/pypa/twine";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -66,6 +66,5 @@ buildPythonPackage rec {
homepage = "https://gitlab.com/sscherfke/typed-settings";
changelog = "https://gitlab.com/sscherfke/typed-settings/-/blob/${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -30,6 +30,5 @@ buildPythonPackage rec {
description = "IPython HTML widgets for Jupyter";
homepage = "https://github.com/jupyter-widgets/ipywidgets/tree/master/python/widgetsnbextension";
license = ipywidgets.meta.license; # Build from same repo
maintainers = with lib.maintainers; [ fridh ];
};
}

View File

@ -52,6 +52,5 @@ buildPythonPackage rec {
description = "N-D labeled arrays and datasets in Python";
homepage = "https://github.com/pydata/xarray";
license = licenses.asl20;
maintainers = with maintainers; [ fridh ];
};
}

View File

@ -82,7 +82,7 @@ in stdenv.mkDerivation rec {
homepage = "https://sabnzbd.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with lib.maintainers; [ fridh jojosch adamcstephens ];
maintainers = with lib.maintainers; [ jojosch adamcstephens ];
mainProgram = "sabnzbd";
};
}

View File

@ -29,7 +29,6 @@ in stdenv.mkDerivation {
description = "A program that compares two Nix expressions and determines which attributes changed";
homepage = "https://github.com/FRidh/niff";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.fridh ];
mainProgram = "niff";
};
}