qmake2cmake: migrate to by-name (#487648)

This commit is contained in:
Yohann Boniface
2026-02-06 21:17:18 +00:00
committed by GitHub
3 changed files with 9 additions and 18 deletions
@@ -1,18 +1,11 @@
{
lib,
buildPythonPackage,
python3Packages,
fetchgit,
packaging,
platformdirs,
portalocker,
pyparsing,
setuptools,
sympy,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage {
python3Packages.buildPythonPackage {
pname = "qmake2cmake";
version = "1.0.8";
pyproject = true;
@@ -28,18 +21,18 @@ buildPythonPackage {
./fix-locations.patch
];
build-system = [ setuptools ];
build-system = [ python3Packages.setuptools ];
dependencies = [
packaging
platformdirs
portalocker
pyparsing
sympy
python3Packages.packaging
python3Packages.platformdirs
python3Packages.portalocker
python3Packages.pyparsing
python3Packages.sympy
];
nativeCheckInputs = [
pytestCheckHook
python3Packages.pytestCheckHook
writableTmpDirAsHomeHook
];
-2
View File
@@ -12779,8 +12779,6 @@ with pkgs;
waylandSupport = true;
};
qmake2cmake = python3Packages.callPackage ../tools/misc/qmake2cmake { };
sail-riscv = callPackage ../applications/virtualization/sail-riscv {
inherit (ocamlPackages) sail;
};