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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, cython
, setuptools-scm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "uharfbuzz";
version = "0.24.1";
format = "setuptools";
disabled = pythonOlder "3.5";
# Fetching from GitHub as Pypi contains different versions
src = fetchFromGitHub {
owner = "harfbuzz";
repo = "uharfbuzz";
rev = "v${version}";
sha256 = "sha256-DyFXbwB28JH2lvmWDezRh49tjCvleviUNSE5LHG3kUg=";
fetchSubmodules = true;
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
cython
setuptools-scm
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "uharfbuzz" ];
meta = with lib; {
description = "Streamlined Cython bindings for the harfbuzz shaping engine";
homepage = "https://github.com/harfbuzz/uharfbuzz";
license = licenses.asl20;
maintainers = with maintainers; [ wolfangaukang ];
broken = stdenv.isDarwin;
};
}