nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.mistune: 2.0.5 -> 3.0.1

Changelog: https://github.com/lepture/mistune/blob/v3.0.1/docs/changes.rst

+5 -2
+5 -2
pkgs/development/python-modules/mistune/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 + , pythonOlder 5 6 , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "mistune"; 10 - version = "2.0.5"; 11 + version = "3.0.1"; 12 + 13 + disabled = pythonOlder "3.7"; 11 14 12 15 format = "pyproject"; 13 16 14 17 src = fetchPypi { 15 18 inherit pname version; 16 - hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ="; 19 + hash = "sha256-6RIRbBOqCUT53FMNs464j2p3CHqxKPSfhKSPTAXqFjw="; 17 20 }; 18 21 19 22 nativeBuildInputs = [