Martin Weinelt ec3617e247
python3Packages.markuppy: 1.14 -> 1.18
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:36 +02:00

32 lines
580 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
}:
buildPythonPackage rec {
pname = "markuppy";
version = "1.18";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-VA8xuDUHYmAzk2iJCsT0TrOXHXX9vZe0n6H4tmhVE9M=";
};
build-system = [ setuptools ];
# 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 ];
};
}