summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/plastexshowmore/default.nix
blob: 907869829a03af8dadc75a11485278f8bf56161a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  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;
  };
}