Unverified Commit 134e254d authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.openstacksdk: 4.9.0 -> 4.10.0 (#493495)

parents 00169318 31655d88
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchpatch,
  fetchPypi,
  autopage,
  cmd2,
@@ -15,14 +16,22 @@

buildPythonPackage rec {
  pname = "cliff";
  version = "4.13.1";
  version = "4.13.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-t5zAssGfbG54yCvZI+BnhQNdd8sNKhpIMinwooNvDKc=";
    hash = "sha256-6Um1hbm2RUnehziM79Seh91jCVziufO5j5Ej182Uvho=";
  };

  patches = [
    # Fix compatibility with Python 3.14.3
    (fetchpatch {
      url = "https://github.com/openstack/cliff/commit/391261c849c994ca2d3f42926497e633047ed8c7.patch";
      hash = "sha256-jcjZKJlcJ8C4VKJejb/bjJ6Li4JjeC2xWK/nFWzIL2c=";
    })
  ];

  build-system = [
    openstackdocstheme
    pbr
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

buildPythonPackage rec {
  pname = "openstacksdk";
  version = "4.9.0";
  version = "4.10.0";
  pyproject = true;

  outputs = [
@@ -32,7 +32,7 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-soRZx8tkBfnW/Fc2iepcXjV0JIKPbHb3srDXY8gPtuo=";
    hash = "sha256-Xd6a4/HiQRqH/1ey142lP6yOrp5brI5YcJJ8ti3fwDM=";
  };

  postPatch = ''