mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
Merge pull request #246926 from tjni/core-python-dependency-maintainers
python: update maintainers for some core python packages
This commit is contained in:
commit
9bd169969f
@ -732,6 +732,7 @@ with lib.maintainers; {
|
||||
fridh
|
||||
hexa
|
||||
jonringer
|
||||
tjni
|
||||
];
|
||||
scope = "Maintain the Python interpreter and related packages.";
|
||||
shortName = "Python";
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user