47 lines
927 B
Nix
47 lines
927 B
Nix
{ lib, buildPythonPackage, fetchPypi, pkgs,
|
|
setuptools, setuptools-scm, setuptools-scm-git-archive, wheel,
|
|
molecule,
|
|
molecule-docker,
|
|
molecule-podman,
|
|
}:
|
|
|
|
let
|
|
pydeps = [
|
|
molecule
|
|
molecule-docker
|
|
molecule-podman
|
|
];
|
|
in buildPythonPackage rec {
|
|
pname = "molecule-containers";
|
|
version = "2.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-yD90kAFyhhT5cnhIdVhamaR8vIT7jjfwUkRmDqfUx5w=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A pluin for Molecule to run in Podman/Docker containers";
|
|
homepage = "https://github.com/ansible-community/molecule-containers";
|
|
license = licenses.mit;
|
|
maintainers = [];
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
# Gets pulled into running environments as well
|
|
propagatedBuildInputs = pydeps;
|
|
|
|
format = "pyproject";
|
|
# Only needed at the buid stage
|
|
buildInputs = [
|
|
setuptools
|
|
#setuptools-scm
|
|
#setuptools-scm-git-archive
|
|
#wheel
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
];
|
|
}
|