nixpkgs/pkgs/development/python-modules/markdown-include/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
783 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
markdown,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "markdown-include";
version = "0.8.1";
format = "setuptools";
# only wheel on pypi
src = fetchFromGitHub {
owner = "cmacmackin";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-1MEk0U00a5cpVhqnDZkwBIk4NYgsRXTVsI/ANNQ/OH0=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ markdown ];
pythonImportsCheck = [ "markdown_include" ];
doCheck = false; # no tests
meta = with lib; {
description = "Extension to Python-Markdown which provides an include function";
homepage = "https://github.com/cmacmackin/markdown-include";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}