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,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pandas
, lxml
, requests
}:
buildPythonPackage rec {
pname = "pandas-datareader";
version = "0.10.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "9fc3c63d39bc0c10c2683f1c6d503ff625020383e38f6cbe14134826b454d5a6";
};
# Tests are trying to load data over the network
doCheck = false;
pythonImportsCheck = [ "pandas_datareader" ];
propagatedBuildInputs = [ pandas lxml requests ];
meta = with lib; {
description = "Up to date remote data access for pandas, works for multiple versions of pandas";
homepage = "https://github.com/pydata/pandas-datareader";
license= licenses.bsd3;
maintainers = with maintainers; [ evax ];
platforms = platforms.unix;
};
}