pythonPackages.pytest-ansible: init at 2.0.1

This commit is contained in:
Chris Ostrouchov 2018-10-10 19:31:31 -04:00 committed by Frederik Rietdijk
parent 648acbabca
commit 1533099b9f
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, ansible
, pytest
, mock
, isPy3k
}:
buildPythonPackage rec {
version = "2.0.1";
pname = "pytest-ansible";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "553f2bc9e64f8c871ad29b7d5c100f6e549fe85db26bd1ff5dda8b769bb38a3e";
};
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
doCheck = false;
checkPhase = ''
pytest tests
'';
meta = with stdenv.lib; {
homepage = http://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 ];
};
}

View File

@ -1921,6 +1921,8 @@ in {
pytest-annotate = callPackage ../development/python-modules/pytest-annotate { };
pytest-ansible = callPackage ../development/python-modules/pytest-ansible { };
pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { };
pytest-benchmark = callPackage ../development/python-modules/pytest-benchmark { };