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,32 @@
{ lib, buildPythonPackage, fetchFromGitHub
, wheel, pytestCheckHook, pytest-runner, pythonAtLeast }:
buildPythonPackage rec {
version = "0.18.4";
pname = "bacpypes";
disabled = pythonAtLeast "3.9";
src = fetchFromGitHub {
owner = "JoelBender";
repo = "bacpypes";
rev = version;
sha256 = "1z5v0i7ms8na062wxd5ki43yy5z2d9cns0p4vdmkx2drwsbzlav2";
};
propagatedBuildInputs = [ wheel ];
# Using pytes instead of setuptools check hook allows disabling specific tests
checkInputs = [ pytestCheckHook pytest-runner ];
dontUseSetuptoolsCheck = true;
disabledTests = [
# Test fails with a an error: AssertionError: assert 30 == 31
"test_recurring_task_5"
];
meta = with lib; {
homepage = "https://github.com/JoelBender/bacpypes";
description = "BACpypes provides a BACnet application layer and network layer written in Python for daemons, scripting, and graphical interfaces.";
license = licenses.mit;
maintainers = with maintainers; [ bachp ];
};
}