Files
nixpkgs/pkgs/development/python-modules/python-markdown-math/default.nix
Martin Weinelt b543178145 python3Packages.python-markdown-math: 0.8 -> 0.9
This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:51 +02:00

32 lines
651 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
markdown,
}:
buildPythonPackage rec {
pname = "python-markdown-math";
version = "0.9";
pyproject = true;
src = fetchFromGitHub {
owner = "mitya57";
repo = "python-markdown-math";
tag = version;
hash = "sha256-m/i43lvOehZSazHXhoAZTRSB5BQgn2VFjXADxSKeXfs=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ markdown ];
meta = {
description = "Math extension for Python-Markdown";
homepage = "https://github.com/mitya57/python-markdown-math";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}