python3Package.python-markdown-math: remove support for python 2.7

As stated in its changelog [1], python 2.7 is no longer supported.

[1] https://github.com/mitya57/python-markdown-math/blob/master/changelog#L4
This commit is contained in:
Jean-François Roche 2020-10-19 00:07:51 +02:00 committed by Jon
parent 76fe85fcdd
commit 8781030dfa

View file

@ -2,11 +2,13 @@
, buildPythonPackage
, fetchPypi
, markdown
, isPy27
}:
buildPythonPackage rec {
pname = "python-markdown-math";
version = "0.7";
disabled = isPy27;
src = fetchPypi {
inherit pname version;