depot/third_party/nixpkgs/pkgs/development/python-modules/markdown-include/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

36 lines
741 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, markdown
}:
buildPythonPackage rec {
pname = "markdown-include";
version = "0.7.0";
format = "setuptools";
# only wheel on pypi
src = fetchFromGitHub {
owner = "cmacmackin";
repo = pname;
rev = "v${version}";
hash = "sha256-2pC0K/Z5l7q6sx4FSM4Pi1/5bt1wLZsqOmcbnE47rVs=";
};
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 = with maintainers; [ hexa ];
};
}