10 buildPythonPackage rec {
11 pname = "mdformat-simple-breaks";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-4lJHB4r9lI2uGJ/BmFFc92sumTRKBBwiRmGBdQkzfd0=";
24 nativeBuildInputs = [ flit-core ];
26 propagatedBuildInputs = [ mdformat ];
28 pythonImportsCheck = [ "mdformat_simple_breaks" ];
31 description = "Mdformat plugin to render thematic breaks using three dashes";
32 homepage = "https://github.com/csala/mdformat-simple-breaks";
33 license = licenses.mit;
34 maintainers = with maintainers; [ aldoborrero ];