9 buildPythonPackage rec {
10 pname = "pytest-ansible";
13 src = fetchFromGitHub {
15 repo = "pytest-ansible";
17 sha256 = "0v97sqk3q2vkmwnjlnncz8ss8086x9jg3cz0g2nzlngs4ql1gdb0";
21 sed -i "s/'setuptools-markdown'//g" setup.py
24 buildInputs = [ pytest ];
26 # requires pandoc < 2.0
27 # buildInputs = [ setuptools-markdown ];
28 checkInputs = [ mock ];
29 propagatedBuildInputs = [ ansible ];
31 # tests not included with release, even on github
35 HOME=$TMPDIR pytest tests/
39 homepage = "https://github.com/jlaska/pytest-ansible";
40 description = "Plugin for py.test to simplify calling ansible modules from tests or fixtures";
41 license = licenses.mit;
42 maintainers = [ maintainers.costrouc ];