nixpkgs/pkgs/development/python-modules/pytest-ansible/default.nix
2020-04-10 17:54:53 +01:00

43 lines
941 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitHub
, ansible
, pytest
, mock
}:
buildPythonPackage rec {
pname = "pytest-ansible";
version = "2.1.1";
src = fetchFromGitHub {
owner = "ansible";
repo = "pytest-ansible";
rev = "v${version}";
sha256 = "0v97sqk3q2vkmwnjlnncz8ss8086x9jg3cz0g2nzlngs4ql1gdb0";
};
patchPhase = ''
sed -i "s/'setuptools-markdown'//g" setup.py
'';
# requires pandoc < 2.0
# buildInputs = [ setuptools-markdown ];
checkInputs = [ mock ];
propagatedBuildInputs = [ ansible pytest ];
# tests not included with release, even on github
doCheck = false;
checkPhase = ''
HOME=$TMPDIR pytest tests/
'';
meta = with stdenv.lib; {
homepage = "https://github.com/jlaska/pytest-ansible";
description = "Plugin for py.test to simplify calling ansible modules from tests or fixtures";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}