Unverified Commit 34ee0bee authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #209425 from r-ryantm/auto-update/python310Packages.sphinx-thebe

python310Packages.sphinx-thebe: 0.1.2 -> 0.2.0
parents 5d503c08 124db025
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -40,6 +40,10 @@ buildPythonPackage rec {
    substituteInPlace pyproject.toml \
      --replace "jsonschema<4" "jsonschema" \
      --replace "sphinx-external-toc~=0.2.3" "sphinx-external-toc" \
      --replace "sphinx-jupyterbook-latex~=0.4.6" "sphinx-jupyterbook-latex" \
      --replace "sphinx-thebe~=0.1.1" "sphinx-thebe" \
      --replace "sphinx>=4,<5" "sphinx" \
      --replace "sphinx_book_theme~=0.3.2" "sphinx_book_theme" \
      --replace "myst-nb~=0.13.1" "myst-nb" \
      --replace "docutils>=0.15,<0.18" "docutils" \
      --replace "sphinx-design~=0.1.0" "sphinx-design" \
+3 −5
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildPythonPackage rec {
  pname = "sphinx-book-theme";
  version = "0.3.3";
  version = "0.4.0rc1";

  format = "wheel";

@@ -20,7 +20,7 @@ buildPythonPackage rec {
    dist = "py3";
    python = "py3";
    pname = "sphinx_book_theme";
    sha256 = "9685959dbbb492af005165ef1b9229fdd5d5431580ac181578beae3b4d012d91";
    sha256 = "bfad8ef469885da5633f7cf7f8cd9a0ae11ea2351a91e507b44cf15973934512";
  };

  propagatedBuildInputs = [
@@ -34,10 +34,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "A clean book theme for scientific explanations and documentation with Sphinx";
    homepage = "https://github.com/executablebooks/sphinx-book-theme";
    changelog = "https://github.com/executablebooks/sphinx-book-theme/raw/v${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ marsam ];
    # Missing sphinx 5.X support
    # https://github.com/executablebooks/sphinx-book-theme/issues/592
    broken = true;
  };
}
+3 −2
Original line number Diff line number Diff line
@@ -7,13 +7,14 @@

buildPythonPackage rec {
  pname = "sphinx-thebe";
  version = "0.1.2";
  version = "0.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "756f1dd6643f5abb491f8a27b22825b04f47e05c5d214bbb2e6b5d42b621b85e";
    sha256 = "sha256-CHZ6WacLlFhpGyujW7b2KkRSlGmUR3rlg5ulPMsKUoc=";
  };

  propagatedBuildInputs = [ sphinx ];