python39Packages.openstackdocstheme: init at 2.3.1

This commit is contained in:
Sandro Jäckel 2022-01-20 13:14:06 +01:00 committed by Sandro Jäckel
parent d2ab4b0d50
commit f9d71ecfc1
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, dulwich
, pbr
, sphinx
}:
buildPythonPackage rec {
pname = "openstackdocstheme";
version = "2.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zzWgAozJrYMFyGWzoDLYbeoY+IPlgzmVhnX7lgM6BXs=";
};
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
'';
propagatedBuildInputs = [ dulwich pbr sphinx ];
# no tests
doCheck = false;
pythonImportsCheck = [ "openstackdocstheme" ];
meta = with lib; {
description = "Sphinx theme for RST-sourced documentation published to docs.openstack.org";
homepage = "https://github.com/openstack/openstackdocstheme";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}

View file

@ -5636,6 +5636,8 @@ in {
opensimplex = callPackage ../development/python-modules/opensimplex { };
openstackdocstheme = callPackage ../development/python-modules/openstackdocstheme { };
openstacksdk = callPackage ../development/python-modules/openstacksdk { };
opentimestamps = callPackage ../development/python-modules/opentimestamps { };