about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-markdown-math
diff options
context:
space:
mode:
authorJean-François Roche <jfroche@affinitic.be>2020-10-19 00:07:51 +0200
committerJon <jonringer@users.noreply.github.com>2020-10-19 08:13:10 -0700
commit8781030dfa7b5d36e58a2896fd7783e884073c45 (patch)
tree81a5290841c7d2539ce48de2df6c9d0861ec6174 /pkgs/development/python-modules/python-markdown-math
parent76fe85fcddd68676e4133065cccb526c009d02e0 (diff)
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
Diffstat (limited to 'pkgs/development/python-modules/python-markdown-math')
-rw-r--r--pkgs/development/python-modules/python-markdown-math/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-markdown-math/default.nix b/pkgs/development/python-modules/python-markdown-math/default.nix
index ea08d7f902c43..6f18a47e13c73 100644
--- a/pkgs/development/python-modules/python-markdown-math/default.nix
+++ b/pkgs/development/python-modules/python-markdown-math/default.nix
@@ -2,11 +2,13 @@
 , buildPythonPackage
 , fetchPypi
 , markdown
+, isPy27
 }:
 
 buildPythonPackage rec {
   pname = "python-markdown-math";
   version = "0.7";
+  disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;