python313Packages.yq: convert to pyproject, cleanup maintainers (#438452)

Sandro dff2cbff 70d8726d

Changed files
+7 -4
pkgs
development
python-modules
+7 -4
pkgs/development/python-modules/yq/default.nix
···
jq,
pytestCheckHook,
pyyaml,
setuptools-scm,
replaceVars,
tomlkit,
···
buildPythonPackage rec {
pname = "yq";
version = "3.4.3";
-
format = "setuptools";
src = fetchPypi {
inherit pname version;
···
})
];
-
nativeBuildInputs = [ setuptools-scm ];
-
propagatedBuildInputs = [
argcomplete
pyyaml
tomlkit
···
homepage = "https://github.com/kislyuk/yq";
license = licenses.asl20;
maintainers = with maintainers; [
-
womfoo
SuperSandro2000
];
mainProgram = "yq";
···
jq,
pytestCheckHook,
pyyaml,
+
setuptools,
setuptools-scm,
replaceVars,
tomlkit,
···
buildPythonPackage rec {
pname = "yq";
version = "3.4.3";
+
pyproject = true;
src = fetchPypi {
inherit pname version;
···
})
];
+
build-system = [
+
setuptools
+
setuptools-scm
+
];
+
dependencies = [
argcomplete
pyyaml
tomlkit
···
homepage = "https://github.com/kislyuk/yq";
license = licenses.asl20;
maintainers = with maintainers; [
SuperSandro2000
];
mainProgram = "yq";