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,35 @@
{ lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
black
}:
buildPythonPackage rec {
pname = "black-macchiato";
version = "1.3.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "wbolster";
repo = pname;
rev = version;
sha256 = "0lc9w50nlbmlzj44krk7kxcia202fhybbnwfh77xixlc7vb4rayl";
};
propagatedBuildInputs = [ black ];
checkInputs = [ pytestCheckHook black ];
pythonImportsCheck = [ "black" ];
meta = with lib; {
description = "This is a small utility built on top of the black Python code formatter to enable formatting of partial files";
homepage = "https://github.com/wbolster/black-macchiato";
license = licenses.bsd3;
maintainers = with maintainers; [ jperras ];
};
}