tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mdformat-simple-breaks: init at 0.0.1
Aldo Borrero
2 years ago
ae56d8f1
40c281ad
+38
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
mdformat-simple-breaks
default.nix
top-level
python-packages.nix
+37
pkgs/development/python-modules/mdformat-simple-breaks/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, mdformat
5
5
+
, mdit-py-plugins
6
6
+
, pythonOlder
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "mdformat-simple-breaks";
11
11
+
version = "0.0.1";
12
12
+
format = "flit";
13
13
+
14
14
+
disabled = pythonOlder "3.7";
15
15
+
16
16
+
src = fetchFromGitHub {
17
17
+
owner = "csala";
18
18
+
repo = pname;
19
19
+
rev = "refs/tags/v${version}";
20
20
+
hash = "sha256-4lJHB4r9lI2uGJ/BmFFc92sumTRKBBwiRmGBdQkzfd0=";
21
21
+
};
22
22
+
23
23
+
buildInputs = [
24
24
+
mdformat
25
25
+
];
26
26
+
27
27
+
pythonImportsCheck = [
28
28
+
"mdformat_simple_breaks"
29
29
+
];
30
30
+
31
31
+
meta = with lib; {
32
32
+
description = "mdformat plugin to render thematic breaks using three dashes";
33
33
+
homepage = "https://github.com/csala/mdformat-simple-breaks";
34
34
+
license = licenses.mit;
35
35
+
maintainers = with maintainers; [ aldoborrero ];
36
36
+
};
37
37
+
}
+1
pkgs/top-level/python-packages.nix
···
6217
6217
mdformat-gfm = callPackage ../development/python-modules/mdformat-gfm { };
6218
6218
mdformat-mkdocs = callPackage ../development/python-modules/mdformat-mkdocs { };
6219
6219
mdformat-nix-alejandra = callPackage ../development/python-modules/mdformat-nix-alejandra { };
6220
6220
+
mdformat-simple-breaks = callPackage ../development/python-modules/mdformat-simple-breaks { };
6220
6221
6221
6222
mdit-py-plugins = callPackage ../development/python-modules/mdit-py-plugins { };
6222
6223