Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 472 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "MarkupSafe"; 8 version = "1.1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Implements a XML/HTML/XHTML Markup safe string"; 17 homepage = http://dev.pocoo.org; 18 license = licenses.bsd3; 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21 22}