Skip to content

Commit

Permalink
python311Packages.openstacksdk: 3.3.0 -> 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyroussel committed Sep 9, 2024
1 parent 8b4fa8c commit de188ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/openstacksdk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@

buildPythonPackage rec {
pname = "openstacksdk";
version = "3.3.0";
version = "4.0.0";
pyproject = true;

disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";

outputs = [
"out"
Expand All @@ -35,7 +35,7 @@ buildPythonPackage rec {

src = fetchPypi {
inherit pname version;
hash = "sha256-BghpDKN8pzMnsPo3YdF+ZTlb43/yALhzXY8kJ3tPSYA=";
hash = "sha256-54YN2WtwUxMJI8EdVx0lgCuWjx4xOIRct8rHxrMzv0s=";
};

postPatch = ''
Expand All @@ -44,14 +44,15 @@ buildPythonPackage rec {
--replace-fail "'sphinxcontrib.rsvgconverter'," "#'sphinxcontrib.rsvgconverter',"
'';

build-system = [
nativeBuildInputs = [
openstackdocstheme
setuptools
sphinxHook
];

sphinxBuilders = [ "man" ];

build-system = [ setuptools ];

dependencies = [
platformdirs
cryptography
Expand Down
1 change: 1 addition & 0 deletions pkgs/development/python-modules/openstacksdk/tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ buildPythonPackage {
openstack.tests.unit.image.v2.test_proxy.TestImageProxy.test_wait_for_task_wait
openstack.tests.unit.image.v2.test_proxy.TestTask.test_wait_for_task_error_396
openstack.tests.unit.image.v2.test_proxy.TestTask.test_wait_for_task_wait
openstack.tests.unit.test_resource.TestWaitForDelete.test_callback
openstack.tests.unit.test_resource.TestWaitForDelete.test_callback_without_progress
openstack.tests.unit.test_resource.TestWaitForDelete.test_status
openstack.tests.unit.test_resource.TestWaitForDelete.test_success_not_found
Expand Down

0 comments on commit de188ad

Please sign in to comment.