blob: da2b68c1eab7a5228e64337f9ee47732f88bc490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
mdformat,
}:
buildPythonPackage rec {
pname = "mdformat-simple-breaks";
version = "0.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "csala";
repo = "mdformat-simple-breaks";
tag = "v${version}";
hash = "sha256-4lJHB4r9lI2uGJ/BmFFc92sumTRKBBwiRmGBdQkzfd0=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ mdformat ];
pythonImportsCheck = [ "mdformat_simple_breaks" ];
meta = {
description = "Mdformat plugin to render thematic breaks using three dashes";
homepage = "https://github.com/csala/mdformat-simple-breaks";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aldoborrero ];
};
}
|