about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/Markups/default.nix
blob: 6fe41e404192eb5bbd34a942e15fc92e92ac3268 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, python-markdown-math
, markdown
, docutils
, pygments
}:

buildPythonPackage rec {
  pname = "Markups";
  version = "3.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39";
  };

  checkInputs = [ markdown docutils pygments ];
  propagatedBuildInputs = [ python-markdown-math ];

  meta = {
    description = "A wrapper around various text markup languages.";
    homepage = https://github.com/retext-project/pymarkups;
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ klntsky ];
  };
}