about summary refs log tree commit diff
path: root/pkgs/development/python-modules/markuppy/default.nix
blob: 4b376f6894ece0e0af290309ae54f5886142240f (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
29
{
  lib,
  fetchPypi,
  buildPythonPackage,
}:

buildPythonPackage rec {
  pname = "markuppy";
  version = "1.14";
  format = "setuptools";

  src = fetchPypi {
    pname = "MarkupPy";
    inherit version;
    hash = "sha256-Gt7iwKVCrzeP6EVI/29rAWjzy39Ca0aWEDiivPqtDV8=";
  };

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "MarkupPy" ];

  meta = with lib; {
    description = "HTML/XML generator";
    homepage = "https://github.com/tylerbakke/MarkupPy";
    license = licenses.mit;
    maintainers = with maintainers; [ sephi ];
  };
}