treewide: *Flags convert to list from str

*Flags implies a list

slightly relevant:
> stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172

the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so
it's not a breaking change
This commit is contained in:
Artturin
2022-10-03 16:56:51 +03:00
parent 8d32772702
commit f4ea1208ec
55 changed files with 124 additions and 106 deletions

View File

@@ -36,7 +36,7 @@ buildPythonPackage rec {
h5py
];
setupPyBuildFlags = "-I${openems}/include -L${openems}/lib -R${openems}/lib";
setupPyBuildFlags = [ "-I${openems}/include" "-L${openems}/lib" "-R${openems}/lib" ];
pythonImportsCheck = [ "openEMS" ];
meta = with lib; {