python3Packages.ansible-later: init at 2.0.6

main
Thomas Boerger 2 years ago committed by Sandro Jäckel
parent e26ee0aa91
commit 272b9436ba
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 71
      pkgs/development/python-modules/ansible-later/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,71 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
# pythonPackages
, anyconfig
, appdirs
, colorama
, flake8
, jsonschema
, nested-lookup
, poetry-core
, python-json-logger
, pyyaml
, toolz
, unidiff
, yamllint
}:
buildPythonPackage rec {
pname = "ansible-later";
version = "2.0.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "thegeeklab";
repo = "ansible-later";
rev = "v${version}";
sha256 = "sha256-vg9ryzl9ZeOGuFLL1yeJ3vGNPdo3ONmCQozY6DK6miY=";
};
postInstall = ''
rm $out/lib/python*/site-packages/LICENSE
'';
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'PyYAML = "6.0"' 'PyYAML = "*"' \
--replace 'unidiff = "0.7.3"' 'unidiff = "*"' \
--replace 'jsonschema = "4.4.0"' 'jsonschema = "*"'
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
anyconfig
appdirs
colorama
flake8
jsonschema
nested-lookup
python-json-logger
pyyaml
toolz
unidiff
yamllint
];
# no tests
doCheck = false;
pythonImportsCheck = [ "ansiblelater" ];
meta = with lib; {
description = "Another best practice scanner for Ansible roles and playbooks";
homepage = "https://github.com/thegeeklab/ansible-later";
license = licenses.mit;
maintainers = with maintainers; [ tboerger ];
};
}

@ -522,6 +522,8 @@ in {
ansible-kernel = callPackage ../development/python-modules/ansible-kernel { };
ansible-later = callPackage ../development/python-modules/ansible-later { };
ansible-lint = callPackage ../development/python-modules/ansible-lint { };
ansible-runner = callPackage ../development/python-modules/ansible-runner { };

Loading…
Cancel
Save