Skip to content

Commit

Permalink
python312Packages.mistune: 3.0.2 -> 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Jan 2, 2025
1 parent 3fe57fe commit c9cb316
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions pkgs/development/python-modules/mistune/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,29 @@

buildPythonPackage rec {
pname = "mistune";
version = "3.0.2";
version = "3.1.0";
pyproject = true;

disabled = pythonOlder "3.7";

format = "pyproject";
disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "lepture";
repo = "mistune";
rev = "refs/tags/v${version}";
hash = "sha256-OoTiqJ7hsFP1Yx+7xW3rL+Yc/O2lCMdhBBbaZucyZXM=";
tag = "v${version}";
hash = "sha256-gXCFBe58Ij6CiwTddsI4tkPsGBR2z9D8dnxlvTXGSMw=";
};

nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];

nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [ "mistune" ];

meta = with lib; {
changelog = "https://github.com/lepture/mistune/blob/${src.rev}/docs/changes.rst";
meta = {
changelog = "https://github.com/lepture/mistune/blob/${src.tag}/docs/changes.rst";
description = "Sane Markdown parser with useful plugins and renderers";
homepage = "https://github.com/lepture/mistune";
license = licenses.bsd3;
maintainers = with maintainers; [ dotlambda ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

0 comments on commit c9cb316

Please sign in to comment.