mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
molecule: add missing build dependencies
This commit is contained in:
parent
d78f502c6b
commit
925de2f558
@ -11,8 +11,10 @@
|
||||
, pluggy
|
||||
, rich
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, yamllint
|
||||
, wcmatch
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -25,6 +27,12 @@ buildPythonPackage rec {
|
||||
hash = "sha256-ssARHVtEp3pW7364WhxhtHAWW5fRFXiioWgEczTI3yM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ansible-compat
|
||||
ansible-core
|
||||
@ -38,10 +46,6 @@ buildPythonPackage rec {
|
||||
wcmatch
|
||||
] ++ lib.optional withPlugins molecule-plugins;
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "molecule" ];
|
||||
|
||||
# tests can't be easily run without installing things from ansible-galaxy
|
||||
|
Loading…
Reference in New Issue
Block a user