3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #172564 from SuperSandro2000/ansible-lint

python310Packages.ansible-lint: 6.0.2 -> 6.2.1
This commit is contained in:
Sandro 2022-05-24 20:03:14 +02:00 committed by GitHub
commit b4902862f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,25 +6,27 @@
, ansible-core
, enrich
, flaky
, jsonschema
, pythonOlder
, pytest
, pytest-xdist
, pytestCheckHook
, pyyaml
, rich
, ruamel-yaml
, wcmatch
, yamllint
, pythonOlder
, pytest-xdist
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ansible-lint";
version = "6.0.2";
version = "6.2.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tTm8ItE+beDMLiV1jh0osrwBVhpBSuN87aNwi1oqee0=";
sha256 = "sha256-yg3u5YNcv6+buhgnWGiKiKC5xoUrMrFed+SwN2whvB8=";
};
postPatch = ''
@ -41,6 +43,8 @@ buildPythonPackage rec {
ansible-compat
ansible-core
enrich
jsonschema
pytest # yes, this is an actual runtime dependency
pyyaml
rich
ruamel-yaml
@ -90,7 +94,7 @@ buildPythonPackage rec {
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible-core ]}" ];
meta = with lib; {
homepage = "https://github.com/ansible-community/ansible-lint";
homepage = "https://github.com/ansible/ansible-lint";
description = "Best practices checker for Ansible";
license = licenses.mit;
maintainers = with maintainers; [ sengaya SuperSandro2000 ];