python3Packages.markupsafe: update pname
This commit is contained in:
parent
a143a6dd34
commit
c5a562e8bd
1 changed files with 6 additions and 4 deletions
|
@ -6,12 +6,13 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "MarkupSafe";
|
||||
pname = "markupsafe";
|
||||
version = "2.0.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "MarkupSafe";
|
||||
inherit version;
|
||||
sha256 = "02k2ynmqvvd0z0gakkf8s4idyb606r7zgga41jrkhqmigy06fk2r";
|
||||
};
|
||||
|
||||
|
@ -19,11 +20,12 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "markupsafe" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implements a XML/HTML/XHTML Markup safe string";
|
||||
homepage = "http://dev.pocoo.org";
|
||||
homepage = "https://palletsprojects.com/p/markupsafe/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue