1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-28 12:06:38 +03:00
nixpkgs/pkgs/development/python-modules/python-markdown-math/default.nix

27 lines
554 B
Nix
Raw Normal View History

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