pythonPackages.ansible-lint: disable for python2

raumel.yaml is not importable, which makes pip
fail during installation
This commit is contained in:
Jonathan Ringer 2020-02-23 12:38:55 -08:00 committed by Jon
parent 58f608339a
commit e1e71e5886

View File

@ -1,17 +1,21 @@
{ lib
, fetchPypi
, buildPythonPackage
, isPy27
, ansible
, pyyaml
, six
, nose
, setuptools_scm
, ruamel_yaml
, pathlib2
}:
buildPythonPackage rec {
pname = "ansible-lint";
version = "4.2.0";
# pip is not able to import version info on raumel.yaml
disabled = isPy27;
src = fetchPypi {
inherit pname version;
@ -21,7 +25,8 @@ buildPythonPackage rec {
format = "pyproject";
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ pyyaml six ansible ruamel_yaml ];
propagatedBuildInputs = [ pyyaml six ansible ruamel_yaml ]
++ lib.optionals isPy27 [ pathlib2 ];
checkInputs = [ nose ];
postPatch = ''