Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / markuppy / default.nix
blob14661a84b62314e141e1c889f53beb3ad295f419
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "markuppy";
5   version = "1.14";
7   src = fetchPypi {
8     pname = "MarkupPy";
9     inherit version;
10     hash = "sha256-Gt7iwKVCrzeP6EVI/29rAWjzy39Ca0aWEDiivPqtDV8=";
11   };
13   # has no tests
14   doCheck = false;
16   pythonImportsCheck = [ "MarkupPy" ];
18   meta = with lib; {
19     description = "An HTML/XML generator";
20     homepage = "https://github.com/tylerbakke/MarkupPy";
21     license = licenses.mit;
22     maintainers = with maintainers; [ sephi ];
23   };