From 085f08d4f2692f40aa69a7cb56166ee09d66dc68 Mon Sep 17 00:00:00 2001 From: Anthony ROUSSEL Date: Thu, 12 Sep 2024 20:17:35 +0200 Subject: [PATCH] python311Packages.tempest: 39.0.0 -> 4.0.0 https://github.com/openstack/tempest/compare/39.0.0...40.0.0 --- pkgs/development/python-modules/tempest/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix index 77326c7152c1..4f9e0190256f 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -28,25 +28,26 @@ bash, python, setuptools, + testscenarios, }: buildPythonPackage rec { pname = "tempest"; - version = "39.0.0"; + version = "40.0.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-l4qKbTfQRWiRsoHN9fiAAiGMGP+q3gwRH1pMSXV/eSU="; + hash = "sha256-s2EvD1TDoRoKrvpRc6h3P7xRyT941nW1hveucXDLB4w="; }; pythonRelaxDeps = [ "defusedxml" ]; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ pbr cliff defusedxml @@ -67,6 +68,7 @@ buildPythonPackage rec { prettytable urllib3 debtcollector + testscenarios ]; nativeCheckInputs = [