Unverified Commit b6f4fbf4 authored by R. RyanTM's avatar R. RyanTM Committed by Sandro Jäckel
Browse files

python3Packages.oslo-concurrency: 7.2.0 -> 7.3.0

parent b5ed4acb
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -22,14 +22,14 @@

buildPythonPackage rec {
  pname = "oslo-concurrency";
  version = "7.2.0";
  version = "7.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "openstack";
    repo = "oslo.concurrency";
    tag = version;
    hash = "sha256-72KatSWTCx4hyUel2Fu5yiqrdYveRGruvJDWWo1hkIk=";
    hash = "sha256-vZWEeyYkdUl9EL4bw6AIbZgVpKXgakvRyFkQAT5GqJ4=";
  };

  postPatch = ''
@@ -38,6 +38,9 @@ buildPythonPackage rec {
      --replace-fail "/bin/bash" "${bash}/bin/bash" \
      --replace-fail "/bin/true" "${coreutils}/bin/true" \
      --replace-fail "/bin/env" "${coreutils}/bin/env"

    substituteInPlace pyproject.toml \
      --replace-fail '"oslo_concurrency"' '"oslo_concurrency", "oslo_concurrency.fixture", "oslo_concurrency.tests"'
  '';

  env.PBR_VERSION = version;