pythonPackages.pytest-ansible: 25.5.0 -> 25.6.3, pythonPackages.pytest-plus: init at 0.8.1 (#431958)

Changed files
+57 -1
pkgs
development
python-modules
pytest-ansible
pytest-plus
top-level
+12 -1
pkgs/development/python-modules/pytest-ansible/default.nix
···
fetchFromGitHub,
packaging,
pytest,
+
pytest-plus,
+
pytest-sugar,
+
pytest-xdist,
pytestCheckHook,
pythonOlder,
setuptools,
···
ansible-core
ansible-compat
packaging
+
pytest-plus
+
pytest-sugar
+
pytest-xdist
];
nativeCheckInputs = [ pytestCheckHook ];
···
enabledTestPaths = [ "tests/" ];
disabledTests = [
+
# pytest unrecognized arguments in test_pool.py
+
"test_ansible_test"
# Host unreachable in the inventory
"test_become"
# [Errno -3] Temporary failure in name resolution
···
homepage = "https://github.com/jlaska/pytest-ansible";
changelog = "https://github.com/ansible-community/pytest-ansible/releases/tag/${src.tag}";
license = licenses.mit;
-
maintainers = with maintainers; [ tjni ];
+
maintainers = with maintainers; [
+
tjni
+
robsliwi
+
];
};
}
+43
pkgs/development/python-modules/pytest-plus/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
pytestCheckHook,
+
pythonOlder,
+
setuptools,
+
setuptools-scm,
+
}:
+
+
buildPythonPackage rec {
+
pname = "pytest-plus";
+
version = "0.8.1";
+
pyproject = true;
+
+
disabled = pythonOlder "3.10";
+
+
src = fetchFromGitHub {
+
owner = "pytest-dev";
+
repo = "pytest-plus";
+
tag = "v${version}";
+
hash = "sha256-XlEtekOASIjZretTbQAf0eyQN6qZ9c6zI1ESss/hxfI=";
+
};
+
+
build-system = [
+
setuptools
+
setuptools-scm
+
];
+
+
nativeCheckInputs = [ pytestCheckHook ];
+
+
enabledTestPaths = [ "test/" ];
+
+
pythonImportsCheck = [ "pytest_plus" ];
+
+
meta = with lib; {
+
description = "pytest-plus adds new features to pytest";
+
homepage = "https://github.com/pytest-dev/pytest-plus";
+
changelog = "https://github.com/pytest-dev/pytest-plus/releases/tag/${src.tag}";
+
license = licenses.mit;
+
maintainers = with maintainers; [ robsliwi ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
pytest-plt = callPackage ../development/python-modules/pytest-plt { };
+
pytest-plus = callPackage ../development/python-modules/pytest-plus { };
+
pytest-pook = callPackage ../development/python-modules/pytest-pook { };
pytest-postgresql = callPackage ../development/python-modules/pytest-postgresql { };