lol

Merge pull request #171211 from fabaff/bump-ansible-doctor

python310Packages.ansible-doctor: 1.2.4 -> 1.3.0

authored by

Sandro and committed by
GitHub
c3d24570 ed199c50

+27 -25
+25 -25
pkgs/development/python-modules/ansible-doctor/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - 6 - # pythonPackages 7 2 , anyconfig 8 3 , appdirs 4 + , buildPythonPackage 9 5 , colorama 10 6 , environs 7 + , fetchFromGitHub 11 8 , jinja2 12 9 , jsonschema 13 10 , nested-lookup 14 11 , pathspec 15 12 , poetry-core 16 13 , python-json-logger 14 + , pythonOlder 17 15 , ruamel-yaml 18 16 }: 19 17 20 18 buildPythonPackage rec { 21 19 pname = "ansible-doctor"; 22 - version = "1.2.4"; 20 + version = "1.3.0"; 23 21 format = "pyproject"; 24 22 25 23 disabled = pythonOlder "3.7"; ··· 28 26 owner = "thegeeklab"; 29 27 repo = "ansible-doctor"; 30 28 rev = "v${version}"; 31 - hash = "sha256-e0FmV4U96TSC/dYJlgo5AeLdXQ7Z7rrP4JCtBxJdkhU="; 29 + hash = "sha256-lJKJE9UccknQg8aqt/6qmjKKaICBxaCH5e8fdmie6u8="; 32 30 }; 33 31 32 + nativeBuildInputs = [ 33 + poetry-core 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + anyconfig 38 + appdirs 39 + colorama 40 + environs 41 + jinja2 42 + jsonschema 43 + nested-lookup 44 + pathspec 45 + python-json-logger 46 + ruamel-yaml 47 + ]; 48 + 34 49 postInstall = '' 35 50 rm $out/lib/python*/site-packages/LICENSE 36 51 ''; 37 52 38 53 postPatch = '' 39 54 substituteInPlace pyproject.toml \ 55 + --replace 'version = "0.0.0"' 'version = "${version}"' \ 56 + --replace 'Jinja2 = "3.1.2"' 'Jinja2 = "*"' \ 40 57 --replace 'anyconfig = "0.13.0"' 'anyconfig = "*"' \ 41 58 --replace 'environs = "9.5.0"' 'environs = "*"' \ 42 59 --replace 'jsonschema = "4.4.0"' 'jsonschema = "*"' \ 43 60 --replace '"ruamel.yaml" = "0.17.21"' '"ruamel.yaml" = "*"' 44 61 ''; 45 62 46 - nativeBuildInputs = [ 47 - poetry-core 48 - ]; 49 - 50 - propagatedBuildInputs = [ 51 - jinja2 52 - colorama 53 - python-json-logger 54 - pathspec 55 - environs 56 - jsonschema 57 - appdirs 58 - ruamel-yaml 59 - anyconfig 60 - nested-lookup 61 - ]; 62 - 63 - # no tests 63 + # Module has no tests 64 64 doCheck = false; 65 65 66 66 pythonImportsCheck = [
+2
pkgs/top-level/all-packages.nix
··· 14716 14716 ansible = ansible_2_12; 14717 14717 ansible_2_12 = python3Packages.toPythonApplication python3Packages.ansible-core; 14718 14718 14719 + ansible-doctor = with python3.pkgs; toPythonApplication ansible-doctor; 14720 + 14719 14721 ansible-lint = with python3.pkgs; toPythonApplication ansible-lint; 14720 14722 14721 14723 antlr2 = callPackage ../development/tools/parsing/antlr/2.7.7.nix {