From 13689642e5f9975ec437399d49b56d9e0e318882 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Oct 2025 08:04:17 +0000 Subject: [PATCH 1/2] python3Packages.mdformat-footnote: 0.1.1 -> 0.1.2 --- pkgs/development/python-modules/mdformat-footnote/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mdformat-footnote/default.nix b/pkgs/development/python-modules/mdformat-footnote/default.nix index 47f7dfe3e1f7..cf9be4d3d0dd 100644 --- a/pkgs/development/python-modules/mdformat-footnote/default.nix +++ b/pkgs/development/python-modules/mdformat-footnote/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "mdformat-footnote"; - version = "0.1.1"; + version = "0.1.2"; pyproject = true; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "executablebooks"; repo = "mdformat-footnote"; tag = "v${version}"; - hash = "sha256-DUCBWcmB5i6/HkqxjlU3aTRO7i0n2sj+e/doKB8ffeo="; + hash = "sha256-JVxztVcp60LynacPw8tBrmSfe6Ool8zyK+aYwaKhyiA="; }; nativeBuildInputs = [ flit-core ]; From 9807347d5b2b96707bc4b9ba4abce88238a14bda Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 19 Oct 2025 11:04:26 +0200 Subject: [PATCH 2/2] python313Packages.mdformat-footnote: modernize Removed restriction on Python version for mdformat-footnote package. --- pkgs/development/python-modules/mdformat-footnote/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/mdformat-footnote/default.nix b/pkgs/development/python-modules/mdformat-footnote/default.nix index cf9be4d3d0dd..2c153dc363d8 100644 --- a/pkgs/development/python-modules/mdformat-footnote/default.nix +++ b/pkgs/development/python-modules/mdformat-footnote/default.nix @@ -5,7 +5,6 @@ flit-core, mdformat, mdit-py-plugins, - pythonOlder, }: buildPythonPackage rec { @@ -13,8 +12,6 @@ buildPythonPackage rec { version = "0.1.2"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "executablebooks"; repo = "mdformat-footnote"; @@ -34,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "Footnote format addition for mdformat"; homepage = "https://github.com/executablebooks/mdformat-footnote"; + changelog = "https://github.com/executablebooks/mdformat-footnote/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ aldoborrero ]; };