nixpkgs/pkgs/development/python-modules/sphinxcontrib-katex/default.nix

29 lines
839 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder, sphinx }:
buildPythonPackage rec {
pname = "sphinxcontrib-katex";
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 = "fa80aba8af9d78f70a0a255815d44e33e8aca8e806ca6101e0eb18b2b7243246";
};
propagatedBuildInputs = [ sphinx ];
# There are no unit tests
doCheck = false;
pythonImportsCheck = [ "sphinxcontrib.katex" ];
meta = with lib; {
description = "Sphinx extension using KaTeX to render math in HTML";
homepage = "https://github.com/hagenw/sphinxcontrib-katex";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}