46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
|
{ beautifulsoup4
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, html5lib
|
||
|
, lib
|
||
|
, lxml
|
||
|
, python
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "draftjs-exporter";
|
||
|
version = "2.1.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
repo = "draftjs_exporter";
|
||
|
owner = "springload";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-tw0r9RnQdIwcY+pqnW8fcV0o2LzmxW0MZPn5drNgK80=";
|
||
|
};
|
||
|
|
||
|
passthru.optional-dependencies = {
|
||
|
lxml = [ lxml ];
|
||
|
html5lib = [ beautifulsoup4 html5lib ];
|
||
|
};
|
||
|
|
||
|
checkInputs = passthru.optional-dependencies.lxml ++ passthru.optional-dependencies.html5lib;
|
||
|
|
||
|
checkPhase = ''
|
||
|
# 2 tests in this file randomly fail because they depend on the order of
|
||
|
# HTML attributes
|
||
|
rm tests/test_exports.py
|
||
|
|
||
|
${python.interpreter} -m unittest discover
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "draftjs_exporter" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library to convert Draft.js ContentState to HTML";
|
||
|
homepage = "https://github.com/springload/draftjs_exporter";
|
||
|
changelog = "https://github.com/springload/draftjs_exporter/blob/v${version}/CHANGELOG.md";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ sephi ];
|
||
|
};
|
||
|
}
|