Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1eac9a32eac8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ee9dabbdcc46
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 14, 2020

  1. Copy the full SHA
    e4b6e56 View commit details
  2. Merge pull request #103806 from r-ryantm/auto-update/python3.7-sphinx…

    …contrib-katex
    
    python37Packages.sphinxcontrib-katex: 0.6.1 -> 0.7.1
    marsam authored Nov 14, 2020
    Copy the full SHA
    ee9dabb View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/sphinxcontrib-katex/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

buildPythonPackage rec {
pname = "sphinxcontrib-katex";
version = "0.6.1";
version = "0.7.1";

# pkgutil namespaces are broken in nixpkgs (because they can't scan multiple
# directories). But python2 is EOL, so not supporting it should be ok.
disabled = pythonOlder "3";

src = fetchPypi {
inherit pname version;
sha256 = "88320b2780f350d67f84a5424973ce24aee65701e8e163a7f5856c5df3353188";
sha256 = "fa80aba8af9d78f70a0a255815d44e33e8aca8e806ca6101e0eb18b2b7243246";
};

propagatedBuildInputs = [ sphinx ];