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,45 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder, routerFeatures
, janus, ncclient, paramiko, pyyaml, sanic }:
let
# The `routerFeatures` flag optionally brings in some somewhat heavy
# dependencies, in order to enable interacting with routers
opts = if routerFeatures then {
prePatch = ''
substituteInPlace ./setup.py --replace "extra_deps = []" "extra_deps = router_feature_deps"
'';
extraBuildInputs = [ janus ncclient paramiko ];
} else {
prePatch = "";
extraBuildInputs = [];
};
in
buildPythonPackage rec {
pname = "entrance";
version = "1.1.17";
src = fetchPypi {
inherit pname version;
sha256 = "dee5b4f3330f633fcd4e665f1781bf6e53b375ffdc7a24434257dfba6b1c2d7f";
};
# The versions of `sanic` and `websockets` in nixpkgs only support 3.6 or later
disabled = pythonOlder "3.6";
# No useful tests
doCheck = false;
propagatedBuildInputs = [ pyyaml sanic ] ++ opts.extraBuildInputs;
prePatch = opts.prePatch;
meta = with lib; {
description = "A server framework for web apps with an Elm frontend";
homepage = "https://github.com/ensoft/entrance";
license = licenses.mit;
maintainers = with maintainers; [ simonchatts ];
};
}