summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytidylib
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-08 01:18:27 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-08 01:29:54 +0200
commitfbb60556f8d831b00966129cda31fba032cfc2df (patch)
tree0b88f0b946f40dbd5e2ffe7168b17c8caaedc768 /pkgs/development/python-modules/pytidylib
parent4997dc3db3d5024902d93ed2d232ae1d56fd8d0e (diff)
downloadnixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar.gz
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar.bz2
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar.lz
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar.xz
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.tar.zst
nixlib-fbb60556f8d831b00966129cda31fba032cfc2df.zip
python.pkgs.tidylib: 0.2.4 -> 0.3.2
fixes #44581
Diffstat (limited to 'pkgs/development/python-modules/pytidylib')
-rw-r--r--pkgs/development/python-modules/pytidylib/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytidylib/default.nix b/pkgs/development/python-modules/pytidylib/default.nix
new file mode 100644
index 000000000000..4ece6fb41343
--- /dev/null
+++ b/pkgs/development/python-modules/pytidylib/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, buildPythonPackage, fetchPypi, python, html-tidy }:
+
+buildPythonPackage rec {
+  pname = "pytidylib";
+  version = "0.3.2";
+
+  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):'
+  '';
+
+  checkPhase = ''
+    ${python.interpreter} -m unittest discover
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Python wrapper for HTML Tidy (tidylib) on Python 2 and 3";
+    homepage = https://countergram.github.io/pytidylib/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ layus ];
+  };
+}