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,23 @@
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
version = "0.1.2";
pname = "pyro-api";
src = fetchPypi {
inherit version pname;
sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
};
pythonImportsCheck = [ "pyroapi" ];
# tests require pyro-ppl which depends on this package
doCheck = false;
meta = {
description = "Generic API for dispatch to Pyro backends.";
homepage = "http://pyro.ai";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ georgewhewell ];
};
}