depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-ansible/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

42 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 ];
};
}