Merge pull request #246926 from tjni/core-python-dependency-maintainers

python: update maintainers for some core python packages
This commit is contained in:
Frederik Rietdijk 2023-08-11 07:45:59 +02:00 committed by GitHub
commit 9bd169969f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

View File

@ -732,6 +732,7 @@ with lib.maintainers; {
fridh
hexa
jonringer
tjni
];
scope = "Maintain the Python interpreter and related packages.";
shortName = "Python";

View File

@ -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 ];
};
}

View File

@ -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;
};
}

View File

@ -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 ];
};
}

View File

@ -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;
};
}