python2Packages.markupsafe: drop

This commit is contained in:
Sigmanificient
2026-01-15 01:38:29 +01:00
parent eb24888d98
commit 50476a84be
2 changed files with 1 additions and 25 deletions
@@ -1,24 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "MarkupSafe";
version = "1.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b";
};
meta = {
description = "Implements a XML/HTML/XHTML Markup safe string";
homepage = "http://dev.pocoo.org";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}