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, fetchPypi
, attrs
, pbr
}:
buildPythonPackage rec {
pname = "sarif-om";
version = "1.0.4";
src = fetchPypi {
pname = "sarif_om";
inherit version;
sha256 = "cd5f416b3083e00d402a92e449a7ff67af46f11241073eea0461802a3b5aef98";
};
nativeBuildInputs = [
pbr
];
propagatedBuildInputs = [
attrs
];
pythonImportsCheck = [ "sarif_om" ];
# no tests included with tarball
doCheck = false;
meta = with lib; {
description = "Classes implementing the SARIF 2.1.0 object model";
homepage = "https://github.com/microsoft/sarif-python-om";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}