summary refs log tree commit diff
path: root/pkgs/development/python-modules/mistune/default.nix
blob: 515844443f121c62959298b9b65021a5b76afe1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
self: rec {
  mistune_0_8 = self.callPackage ./common.nix {
    version = "0.8.4";
    sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e";
    extraMeta = {
      knownVulnerabilities = [ "CVE-2022-34749" ];
    };
  };
  mistune_2_0 = self.callPackage ./common.nix {
    version = "2.0.4";
    sha256 = "sha256-nuCmYFPiJnq6dyxx4GiR+o8a9tSwHV6E4me0Vw1NmAg=";
    format = "pyproject";
  };
  mistune = mistune_0_8;
}