Files
nixpkgs/pkgs/development/python-modules/markdown-include/default.nix
T
Martin Weinelt 8056f9250c treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

42 lines
817 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 = with maintainers; [ hexa ];
};
}