diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 975a1e2c42c9..5e3a01412ee8 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -732,6 +732,7 @@ with lib.maintainers; { fridh hexa jonringer + tjni ]; scope = "Maintain the Python interpreter and related packages."; shortName = "Python"; diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix index e7c45afdd317..0eaad47c44f0 100644 --- a/pkgs/development/python-modules/build/default.nix +++ b/pkgs/development/python-modules/build/default.nix @@ -86,6 +86,6 @@ buildPythonPackage rec { homepage = "https://github.com/pypa/build"; changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ fab ]; + maintainers = teams.python.members ++ [ maintainers.fab ]; }; } diff --git a/pkgs/development/python-modules/flit-core/default.nix b/pkgs/development/python-modules/flit-core/default.nix index c81a8567de2f..0d0c3785f881 100644 --- a/pkgs/development/python-modules/flit-core/default.nix +++ b/pkgs/development/python-modules/flit-core/default.nix @@ -36,7 +36,8 @@ buildPythonPackage rec { meta = with lib; { description = "Distribution-building parts of Flit. See flit package for more information"; homepage = "https://github.com/pypa/flit"; + changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst"; license = licenses.bsd3; - maintainers = with maintainers; [ fridh ]; + maintainers = teams.python.members; }; } diff --git a/pkgs/development/python-modules/installer/default.nix b/pkgs/development/python-modules/installer/default.nix index 9d3c8185322a..02934550273b 100644 --- a/pkgs/development/python-modules/installer/default.nix +++ b/pkgs/development/python-modules/installer/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { format = "pyproject"; src = fetchFromGitHub { - owner = "pradyunsg"; + owner = "pypa"; repo = pname; rev = version; hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A="; @@ -27,10 +27,10 @@ buildPythonPackage rec { ]; meta = with lib; { - changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md"; - homepage = "https://github.com/pradyunsg/installer"; description = "A low-level library for installing a Python package from a wheel distribution"; + homepage = "https://github.com/pypa/installer"; + changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md"; license = licenses.mit; - maintainers = with maintainers; [ cpcloud fridh ]; + maintainers = teams.python.members ++ [ maintainers.cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pyproject-hooks/default.nix b/pkgs/development/python-modules/pyproject-hooks/default.nix index 76bf3902c3d2..d751160b54d8 100644 --- a/pkgs/development/python-modules/pyproject-hooks/default.nix +++ b/pkgs/development/python-modules/pyproject-hooks/default.nix @@ -26,8 +26,7 @@ buildPythonPackage rec { flit-core ]; - propagatedBuildInputs = [ - ] ++ lib.optionals (pythonOlder "3.11") [ + propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ tomli ]; @@ -52,6 +51,6 @@ buildPythonPackage rec { homepage = "https://github.com/pypa/pyproject-hooks"; changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst"; license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + maintainers = teams.python.members; }; }