python3Packages.ansible-runner: 2.3.0 -> 2.3.1

Pass glibcLocales to tests, so locale initialization testing works.
This commit is contained in:
Martin Weinelt 2022-11-20 13:24:40 +01:00
parent a304f16901
commit c933e98715
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -3,6 +3,7 @@
, ansible-core
, buildPythonPackage
, fetchPypi
, glibcLocales
, mock
, openssh
, pbr
@ -20,14 +21,14 @@
buildPythonPackage rec {
pname = "ansible-runner";
version = "2.3.0";
version = "2.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-mcTfu+reRGOXvRqeC/BQhz2KBrWSbVXSQIWyld2/Ecs=";
hash = "sha256-HS8C06Ylc/OOaKI3kBGLeYF5HCvtK18i96NqIhwoh1Y=";
};
nativeBuildInputs = [
@ -45,6 +46,7 @@ buildPythonPackage rec {
checkInputs = [
ansible-core # required to place ansible CLI onto the PATH in tests
glibcLocales
pytestCheckHook
pytest-mock
pytest-timeout