python3Packages.openstacksdk: 4.5.0 -> 4.6.0 (#416011)

authored by Sandro and committed by GitHub 18db32bd fe615e66

+4 -3
+2 -2
pkgs/development/python-modules/openstacksdk/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "openstacksdk"; 25 - version = "4.5.0"; 25 + version = "4.6.0"; 26 26 pyproject = true; 27 27 28 28 outputs = [ ··· 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - hash = "sha256-q3oSQCB6aWm6Cc7ujxZlOAVzBne0SXqAbNlWczZR/mg="; 35 + hash = "sha256-5H4WbEcy6a6mUijmGNSQ5L5d8GUmobleLVmV19CXfT0="; 36 36 }; 37 37 38 38 postPatch = ''
+2 -1
pkgs/development/python-modules/python-openstackclient/default.nix
··· 70 70 71 71 checkPhase = '' 72 72 runHook preCheck 73 - stestr run 73 + stestr run -E \ 74 + "openstackclient.tests.unit.network.v2.test_security_group_network.(TestCreateSecurityGroupNetwork.(test_create_with_tags|test_create_with_no_tag|test_create_min_options|test_create_all_options)|TestShowSecurityGroupNetwork.test_show_all_options)" 74 75 runHook postCheck 75 76 ''; 76 77