about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansible-runner
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-11-20 13:24:40 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-11-21 02:04:14 +0100
commitc933e98715d526522818268dc06322634a41a634 (patch)
treed822324d9eabac55233a2d92b1d2f06ed13e6017 /pkgs/development/python-modules/ansible-runner
parenta304f169019d701af8d81d0396a95c91334286b9 (diff)
python3Packages.ansible-runner: 2.3.0 -> 2.3.1
Pass glibcLocales to tests, so locale initialization testing works.
Diffstat (limited to 'pkgs/development/python-modules/ansible-runner')
-rw-r--r--pkgs/development/python-modules/ansible-runner/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ansible-runner/default.nix b/pkgs/development/python-modules/ansible-runner/default.nix
index 614bbe28a21c8..44e5a519a7bba 100644
--- a/pkgs/development/python-modules/ansible-runner/default.nix
+++ b/pkgs/development/python-modules/ansible-runner/default.nix
@@ -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