Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 526 B view raw
1{ lib, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "markuppy"; 5 version = "1.14"; 6 7 src = fetchPypi { 8 pname = "MarkupPy"; 9 inherit version; 10 hash = "sha256-Gt7iwKVCrzeP6EVI/29rAWjzy39Ca0aWEDiivPqtDV8="; 11 }; 12 13 # has no tests 14 doCheck = false; 15 16 pythonImportsCheck = [ "MarkupPy" ]; 17 18 meta = with lib; { 19 description = "An HTML/XML generator"; 20 homepage = "https://github.com/tylerbakke/MarkupPy"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ sephi ]; 23 }; 24}