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,57 @@
{ lib
, buildPythonPackage
, fetchPypi
, zeroconf
, requests
, setuptools
}:
buildPythonPackage rec {
pname = "moku";
version = "2.3";
/*
Pypi's webpage <https://pypi.org/project/moku/> lists
https://github.com/liquidinstruments/moku/archive/${version}.tar.gz as the
download link, but that repository doesn't exist from some reason :/. When
packaging this, I didn't find any mention of a git repo of the sources. Note
that the pymoku <https://github.com/liquidinstruments/pymoku> repo holds the
sources of the legacy API package.
*/
src = fetchPypi {
inherit pname version;
hash = "sha256-EzVcECjJyrr2NLQkG0Yp/jYBMnsEP1/FnS5O3UplszI=";
};
/*
Note: If you run `moku download` and encounter the error:
[Errno 13] Permission denied: '/nix/store/.../lib/python 3.9/site-packages/moku/data'
Then use the $MOKU_DATA_PATH environment variable to control where the
downloaded files will go to. It is undocumented upstream and there's no
repository to contribute such documentation unfortunately. Also there is no
suitable default value for this on Nix systems, so there's no patch we can
apply locally to make the situation better.
*/
propagatedBuildInputs = [
zeroconf
requests
setuptools
];
pythonImportsCheck = [
"moku"
];
meta = with lib; {
description = "Python scripting interface to the Liquid Instruments Moku";
homepage = "https://apis.liquidinstruments.com/starting-python.html";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}