depot/third_party/nixpkgs/pkgs/development/python-modules/markuppy/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
551 B
Nix

{ 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 ];
};
}