python311Packages.pytest-ansible 3.2.1 -> 4.1.0 https://repology.org/project/python:pytest-ansible/versions attrpath: python311Packages.pytest-ansible Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fwycg5f4ilrs7cgcv4ys70zidxcby0zv-packages.json.drv building '/nix/store/fwycg5f4ilrs7cgcv4ys70zidxcby0zv-packages.json.drv'... Going to be running update for following packages: - python3.11-pytest-ansible-3.2.1 Press Enter key to continue... Running update for: - python3.11-pytest-ansible-3.2.1: UPDATING ... - python3.11-pytest-ansible-3.2.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-ansible/default.nix b/pkgs/development/python-modules/pytest-ansible/default.nix index 0b941d9be607..4fbfb942edda 100644 --- a/pkgs/development/python-modules/pytest-ansible/default.nix +++ b/pkgs/development/python-modules/pytest-ansible/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pytest-ansible"; - version = "3.2.1"; + version = "4.1.0"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "ansible"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-fSerRbd7QeEdTfyy2lVLq7FKHWWT0MlutonunHhM5M4="; + hash = "sha256-TV/dR4eTiwjrgamwRCig10acaf3MpAzLu0fHF0V2pzw="; }; postPatch = '' No auto update branch exists Old version 3.2.1" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchFromGitHub , ansible-core , coreutils , coverage , pytest , pytestCheckHook , pythonOlder , setuptools , setuptools-scm , wheel }: buildPythonPackage rec { pname = "pytest-ansible"; version = "4.1.0"; format = "pyproject"; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "ansible"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-TV/dR4eTiwjrgamwRCig10acaf3MpAzLu0fHF0V2pzw="; }; postPatch = '' substituteInPlace tests/conftest.py inventory \ --replace '/usr/bin/env' '${coreutils}/bin/env' ''; env.SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools setuptools-scm wheel ]; buildInputs = [ pytest ]; propagatedBuildInputs = [ ansible-core ]; nativeCheckInputs = [ coverage pytestCheckHook ]; preCheck = '' export HOME=$TMPDIR ''; pytestFlagsArray = [ "tests/" ]; disabledTests = [ # Host unreachable in the inventory "test_become" # [Errno -3] Temporary failure in name resolution "test_connection_failure_v2" "test_connection_failure_extra_inventory_v2" ] ++ lib.optionals stdenv.isDarwin [ # These tests fail in the Darwin sandbox "test_ansible_facts" "test_func" "test_param_override_with_marker" ]; disabledTestPaths = lib.optionals stdenv.isDarwin [ # These tests fail in the Darwin sandbox "tests/test_adhoc.py" "tests/test_adhoc_result.py" ]; pythonImportsCheck = [ "pytest_ansible" ]; meta = with lib; { description = "Plugin for py.test to simplify calling ansible modules from tests or fixtures"; homepage = "https://github.com/jlaska/pytest-ansible"; changelog = "https://github.com/ansible-community/pytest-ansible/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ tjni ]; }; }