uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
34
pkgs/development/python-modules/pytidylib/default.nix
Normal file
34
pkgs/development/python-modules/pytidylib/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue