Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, markdown }: 2 3buildPythonPackage rec { 4 pname = "MarkdownSuperscript"; 5 version = "2.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "2c255b5959c1f5dd364ae80762bd0a568a0fcc9fd4e4a3d7e7b192e88adf8900"; 10 }; 11 12 propagatedBuildInputs = [ markdown ]; 13 14 doCheck = false; # See https://github.com/NixOS/nixpkgs/pull/26985 15 16 meta = { 17 description = "An extension to the Python Markdown package enabling superscript text"; 18 homepage = https://github.com/jambonrose/markdown_superscript_extension; 19 license = stdenv.lib.licenses.bsd2; 20 }; 21}