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 fridh
hexa hexa
jonringer jonringer
tjni
]; ];
scope = "Maintain the Python interpreter and related packages."; scope = "Maintain the Python interpreter and related packages.";
shortName = "Python"; shortName = "Python";

View file

@ -86,6 +86,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/build"; homepage = "https://github.com/pypa/build";
changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst"; changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = teams.python.members ++ [ maintainers.fab ];
}; };
} }

View file

@ -36,7 +36,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Distribution-building parts of Flit. See flit package for more information"; description = "Distribution-building parts of Flit. See flit package for more information";
homepage = "https://github.com/pypa/flit"; homepage = "https://github.com/pypa/flit";
changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ fridh ]; maintainers = teams.python.members;
}; };
} }

View file

@ -13,7 +13,7 @@ buildPythonPackage rec {
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pradyunsg"; owner = "pypa";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A="; hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A=";
@ -27,10 +27,10 @@ buildPythonPackage rec {
]; ];
meta = with lib; { 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"; 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; license = licenses.mit;
maintainers = with maintainers; [ cpcloud fridh ]; maintainers = teams.python.members ++ [ maintainers.cpcloud ];
}; };
} }

View file

@ -26,8 +26,7 @@ buildPythonPackage rec {
flit-core flit-core
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [
] ++ lib.optionals (pythonOlder "3.11") [
tomli tomli
]; ];
@ -52,6 +51,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/pyproject-hooks"; homepage = "https://github.com/pypa/pyproject-hooks";
changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst"; changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ hexa ]; maintainers = teams.python.members;
}; };
} }