nixpkgs/pkgs/development/python-modules/markdownsuperscript/default.nix
2020-12-01 14:44:23 +01:00

32 lines
955 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, markdown,
pytest, pytestrunner, pytestcov, coverage }:
buildPythonPackage rec {
pname = "MarkdownSuperscript";
version = "2.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "2c255b5959c1f5dd364ae80762bd0a568a0fcc9fd4e4a3d7e7b192e88adf8900";
};
propagatedBuildInputs = [ markdown ];
postPatch = ''
# remove version bounds for Markdown dependency
sed 's/\["Markdown.*"\]/["Markdown"]/' -i setup.py
# remove version bounds for test dependencies
sed 's/=.*//' -i requirements/*.txt
'';
checkInputs = [ pytest pytestrunner pytestcov coverage ];
meta = {
description = "An extension to the Python Markdown package enabling superscript text";
homepage = "https://github.com/jambonrose/markdown_superscript_extension";
license = stdenv.lib.licenses.bsd2;
broken = true; # unmaintained in nixpkgs, barely maintained in pypi, added 2020-11-29
};
}