02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
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 = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "draftjs_exporter";
|
|
owner = "springload";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-4MmCVRx350p6N9XqTZSo8ROI/OJ0s4aKSYH9+Oxgvf4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|