python3Packages.markupsafe: update pname

This commit is contained in:
Fabian Affolter 2021-07-03 14:46:47 +02:00
parent a143a6dd34
commit c5a562e8bd

View file

@ -6,12 +6,13 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "MarkupSafe"; pname = "markupsafe";
version = "2.0.1"; version = "2.0.1";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "MarkupSafe";
inherit version;
sha256 = "02k2ynmqvvd0z0gakkf8s4idyb606r7zgga41jrkhqmigy06fk2r"; sha256 = "02k2ynmqvvd0z0gakkf8s4idyb606r7zgga41jrkhqmigy06fk2r";
}; };
@ -19,11 +20,12 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "markupsafe" ];
meta = with lib; { meta = with lib; {
description = "Implements a XML/HTML/XHTML Markup safe string"; description = "Implements a XML/HTML/XHTML Markup safe string";
homepage = "http://dev.pocoo.org"; homepage = "https://palletsprojects.com/p/markupsafe/";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ]; maintainers = with maintainers; [ domenkozar ];
}; };
} }