3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #199250 from r-ryantm/auto-update/python3.10-ansible-runner

python310Packages.ansible-runner: 2.2.1 -> 2.3.0
This commit is contained in:
Fabian Affolter 2022-11-03 10:22:18 +01:00 committed by GitHub
commit 950e2db322
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,7 @@
, pytest-timeout
, pytest-xdist
, pytestCheckHook
, pythonOlder
, python-daemon
, pyyaml
, six
@ -19,12 +20,14 @@
buildPythonPackage rec {
pname = "ansible-runner";
version = "2.2.1";
version = "2.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-zZtssRdAEbTi4KWZPU0E2SjN5f4iqJk67UQ4STOHwYI=";
hash = "sha256-mcTfu+reRGOXvRqeC/BQhz2KBrWSbVXSQIWyld2/Ecs=";
};
nativeBuildInputs = [