Commit 55131d78 authored by Anthony ROUSSEL's avatar Anthony ROUSSEL
Browse files

python311Packages.openstackdocstheme: 3.3.0 -> 3.4.0

parent 549cc5ea
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "openstackdocstheme";
  version = "3.3.0";
  version = "3.4.0";
  pyproject = true;

  # breaks on import due to distutils import through pbr.packaging
@@ -19,13 +19,11 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-wmZJmX5bQKM1uwqWxynkY5jPJaBn+Y2eqSRkE2Ub0qM=";
    hash = "sha256-YA3nY7Q6UM9sviGRUh08EwwLEjneO2KAh4Hsr/hn25U=";
  };

  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
    patchShebangs bin/
  '';

  build-system = [ setuptools ];