about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/markuppy/default.nix
blob: fde9ae4ceec94e93346a1ccbf4143e40641412c6 (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
{ 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 = "An HTML/XML generator";
    homepage = "https://github.com/tylerbakke/MarkupPy";
    license = licenses.mit;
    maintainers = with maintainers; [ sephi ];
  };
}