1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "MarkupSafe";
9 version = "1.1.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b";
15 };
16
17 meta = with lib; {
18 description = "Implements a XML/HTML/XHTML Markup safe string";
19 homepage = "http://dev.pocoo.org";
20 license = licenses.bsd3;
21 maintainers = with maintainers; [ ];
22 };
23
24}