python3.pkgs.pyproject-hooks: add python team to maintainers

This commit is contained in:
Theodore Ni 2023-07-26 00:55:49 -07:00
parent ad69eef941
commit 682b78c850
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

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