blob: a623602dfce6d5eef1a16cbcea3b193d05612d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
unittestCheckHook,
html-tidy,
}:
buildPythonPackage rec {
pname = "pytidylib";
version = "0.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "22b1c8d75970d8064ff999c2369e98af1d0685417eda4c829a5c9f56764b0af3";
};
postPatch = ''
# Patch path to library
substituteInPlace tidylib/tidy.py \
--replace "load_library(name)" \
"load_library('${html-tidy}/lib/libtidy${stdenv.hostPlatform.extensions.sharedLibrary}')"
# Test fails
substituteInPlace tests/test_docs.py \
--replace " def test_large_document(self):" \
$' @unittest.skip("")\n def test_large_document(self):'
'';
nativeCheckInputs = [ unittestCheckHook ];
meta = {
description = "Python wrapper for HTML Tidy (tidylib) on Python 2 and 3";
homepage = "https://countergram.github.io/pytidylib/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ layus ];
};
}
|