depot/third_party/nixpkgs/pkgs/development/python-modules/plastexshowmore/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

35 lines
687 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
plasTeX,
}:
buildPythonPackage {
pname = "plastexshowmore";
version = "0.0.2";
pyproject = true;
src = fetchFromGitHub {
repo = "plastexshowmore";
owner = "PatrickMassot";
rev = "0.0.2";
hash = "sha256-b45VHHEwFA41FaInDteix56O7KYDzyKiRRSl7heHqEA=";
};
build-system = [ setuptools ];
dependencies = [ plasTeX ];
meta = {
description = "PlasTeX plugin for adding navigation buttons";
homepage = "https://github.com/PatrickMassot/plastexshowmore";
maintainers = with lib.maintainers; [ niklashh ];
license = lib.licenses.asl20;
};
}