Unverified Commit b1c5a367 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3.pkgs.icalendar: build offline documentation (#449545)

parents 4c51b38b 1bb0ec5a
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -9,12 +9,19 @@
  tzdata,
  hypothesis,
  pytestCheckHook,
  sphinxHook,
  sphinx-copybutton,
  pydata-sphinx-theme,
}:

buildPythonPackage rec {
  version = "6.3.1";
  pname = "icalendar";
  pyproject = true;
  outputs = [
    "out"
    "doc"
  ];

  src = fetchFromGitHub {
    owner = "collective";
@@ -39,6 +46,12 @@ buildPythonPackage rec {
    tzdata
  ];

  nativeBuildInputs = [
    sphinxHook
    sphinx-copybutton
    pydata-sphinx-theme
  ];

  nativeCheckInputs = [
    hypothesis
    pytestCheckHook