python311Packages.openstackdocstheme: 3.3.0 -> 3.4.0

https://github.com/openstack/openstackdocstheme/compare/3.3.0...3.4.0
This commit is contained in:
Anthony ROUSSEL 2024-10-23 20:14:45 +02:00
parent 549cc5eadd
commit 55131d78ae

View File

@ -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 ];