Skip to content

Commit

Permalink
Merge pull request #251730 from tjni/molecule
Browse files Browse the repository at this point in the history
molecule: add missing build dependencies
  • Loading branch information
tjni authored Aug 27, 2023
2 parents 6330827 + 925de2f commit 86beecc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/development/python-modules/molecule/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
, pluggy
, rich
, setuptools
, setuptools-scm
, yamllint
, wcmatch
, wheel
}:

buildPythonPackage rec {
Expand All @@ -25,6 +27,12 @@ buildPythonPackage rec {
hash = "sha256-ssARHVtEp3pW7364WhxhtHAWW5fRFXiioWgEczTI3yM=";
};

nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];

propagatedBuildInputs = [
ansible-compat
ansible-core
Expand All @@ -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
Expand Down

0 comments on commit 86beecc

Please sign in to comment.