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