Files
nixpkgs/pkgs/development/python-modules/pymdown-extensions/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

69 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, pytestCheckHook
, markdown
, pyyaml
, pygments
}:
let
extensions = [
"arithmatex"
"b64"
"betterem"
"caret"
"critic"
"details"
"emoji"
"escapeall"
"extra"
"highlight"
"inlinehilite"
"keys"
"magiclink"
"mark"
"pathconverter"
"progressbar"
"saneheaders"
"smartsymbols"
"snippets"
"striphtml"
"superfences"
"tabbed"
"tasklist"
"tilde"
];
in
buildPythonPackage rec {
pname = "pymdown-extensions";
version = "9.9";
format = "pyproject";
src = fetchFromGitHub {
owner = "facelessuser";
repo = "pymdown-extensions";
rev = "refs/tags/${version}";
sha256 = "sha256-JZtze6KjiBJGEQzA8lsTShhZu96wxAr4KeKzCe0A18Q=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [ markdown pygments ];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
pythonImportsCheck = map (ext: "pymdownx.${ext}") extensions;
meta = with lib; {
description = "Extensions for Python Markdown";
homepage = "https://facelessuser.github.io/pymdown-extensions/";
license = with licenses; [ mit bsd2 ];
maintainers = with maintainers; [ cpcloud ];
};
}