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,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "olefile";
version = "0.46";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"olefile"
];
meta = with lib; {
description = "Python package to parse, read and write Microsoft OLE2 files";
homepage = "https://www.decalage.info/python/olefileio";
# BSD2 + reference to Pillow
# http://olefile.readthedocs.io/en/latest/License.html
license = with licenses; [ bsd2 /* and */ hpnd ];
maintainers = with maintainers; [ fab ];
};
}