4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
999 B
Nix
35 lines
999 B
Nix
{ lib, 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 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 ];
|
|
};
|
|
}
|