python3Packages.mistune_0_8: mark knownVulnerabilities CVE-2022-34749

This commit is contained in:
Robert Scott 2022-07-31 13:04:11 +01:00
parent 6fde9705e8
commit db8c23037a
2 changed files with 13 additions and 2 deletions

View file

@ -1,4 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, nose, version, sha256, format ? "setuptools" }:
{ lib
, buildPythonPackage
, fetchPypi
, nose
, version
, sha256
, format ? "setuptools"
, extraMeta ? {}
}:
buildPythonPackage rec {
inherit version format;
@ -15,5 +23,5 @@ buildPythonPackage rec {
description = "The fastest markdown parser in pure Python";
homepage = "https://github.com/lepture/mistune";
license = licenses.bsd3;
};
} // extraMeta;
}

View file

@ -2,6 +2,9 @@ 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";