mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
32 lines
646 B
Nix
32 lines
646 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 ];
|
|
|
|
dependencies = [ 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 ];
|
|
};
|
|
}
|