nixpkgs/pkgs/development/python-modules/markupsafe/default.nix

23 lines
474 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "MarkupSafe";
2019-04-16 17:15:37 +00:00
version = "1.1.1";
src = fetchPypi {
inherit pname version;
2019-04-16 17:15:37 +00:00
sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b";
};
meta = with stdenv.lib; {
description = "Implements a XML/HTML/XHTML Markup safe string";
homepage = "http://dev.pocoo.org";
license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ];
};
}