Files
nixpkgs/pkgs/development/python-modules/md-toc/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

55 lines
1007 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fpyutils
, pyfakefs
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "md-toc";
version = "8.2.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "frnmst";
repo = "md-toc";
rev = "refs/tags/${version}";
hash = "sha256-nKkKtLEW0pohXiMtjWl2Kzh7SRwZJ/yzhXpDyluLodc=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
fpyutils
];
nativeCheckInputs = [
pyfakefs
pytestCheckHook
];
pytestFlagsArray = [
"md_toc/tests/*.py"
];
pythonImportsCheck = [
"md_toc"
];
meta = with lib; {
description = "Table of contents generator for Markdown";
mainProgram = "md_toc";
homepage = "https://docs.franco.net.eu.org/md-toc/";
changelog = "https://blog.franco.net.eu.org/software/CHANGELOG-md-toc.html";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}