Unverified Commit bd798bc0 authored by Anthony ROUSSEL's avatar Anthony ROUSSEL Committed by Sandro Jäckel
Browse files

python312Packages.stestr: 4.1.0 -> 4.2.0

parent 1100a36e
Loading
Loading
Loading
Loading
+6 −17
Original line number Diff line number Diff line
@@ -4,9 +4,7 @@
  fetchPypi,
  cliff,
  fixtures,
  future,
  pbr,
  setuptools,
  flit-core,
  subunit,
  testtools,
  tomlkit,
@@ -16,30 +14,21 @@

buildPythonPackage rec {
  pname = "stestr";
  version = "4.1.0";
  version = "4.2.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-X2HDae7OY8KS0TWZ4SqhWK92hZkGQ/JN1vp/q/406Yo=";
    hash = "sha256-Rexjny0cw3LjYwYTuT83zynT3+adSdTz+UCNN7Ebwpw=";
  };

  postPatch = ''
    # only a small portion of the listed packages are actually needed for running the tests
    # so instead of removing them one by one remove everything
    rm test-requirements.txt
  '';

  nativeBuildInputs = [
    pbr
    setuptools
  build-system = [
    flit-core
  ];

  propagatedBuildInputs = [
  dependencies = [
    cliff
    fixtures
    future
    pbr
    subunit
    testtools
    tomlkit
+0 −6
Original line number Diff line number Diff line
@@ -5,12 +5,6 @@ buildPythonPackage {
  inherit (stestr) version src;
  format = "other";

  postPatch = ''
    # only a small portion of the listed packages are actually needed for running the tests
    # so instead of removing them one by one remove everything
    rm test-requirements.txt
  '';

  dontBuild = true;
  dontInstall = true;
  preConfigure = ''