python3Packages.mdformat-simple-breaks: 0.0.1 -> 0.1.0

Diff: https://github.com/csala/mdformat-simple-breaks/compare/v0.0.1...v0.1.0
This commit is contained in:
Gaetan Lepage
2026-01-25 00:29:24 +00:00
parent 0902e92e43
commit 7ac032101e
@@ -4,30 +4,40 @@
fetchFromGitHub,
flit-core,
mdformat,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "mdformat-simple-breaks";
version = "0.0.1";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "csala";
repo = "mdformat-simple-breaks";
tag = "v${version}";
hash = "sha256-4lJHB4r9lI2uGJ/BmFFc92sumTRKBBwiRmGBdQkzfd0=";
tag = "v${finalAttrs.version}";
hash = "sha256-w0qPxIlCFMvs7p2Lya/ATkQN9wVt8ipsePZgonN/qpc=";
};
nativeBuildInputs = [ flit-core ];
build-system = [
flit-core
];
propagatedBuildInputs = [ mdformat ];
dependencies = [
mdformat
];
pythonImportsCheck = [ "mdformat_simple_breaks" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Mdformat plugin to render thematic breaks using three dashes";
changelog = "https://github.com/csala/mdformat-simple-breaks/releases/tag/${finalAttrs.src.tag}";
homepage = "https://github.com/csala/mdformat-simple-breaks";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aldoborrero ];
};
}
})