nixpkgs/pkgs/development/python-modules/python-markdown-math/default.nix

25 lines
524 B
Nix
Raw Normal View History

2019-03-16 12:14:52 -07:00
{ lib
, buildPythonPackage
, fetchPypi
, markdown
}:
buildPythonPackage rec {
pname = "python-markdown-math";
version = "0.7";
2019-03-16 12:14:52 -07:00
src = fetchPypi {
inherit pname version;
sha256 = "17a12175e8b2052a1c3402fca410841c551c678046293b1f7c280ccfe7b302a0";
2019-03-16 12:14:52 -07:00
};
checkInputs = [ markdown ];
meta = {
description = "Math extension for Python-Markdown";
homepage = "https://github.com/mitya57/python-markdown-math";
2019-03-16 14:28:23 -07:00
license = lib.licenses.bsd3;
2019-03-16 12:14:52 -07:00
maintainers = with lib.maintainers; [ klntsky ];
};
}