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, fetchFromGitHub, django, pytest, pytest-django, python }:
buildPythonPackage rec {
pname = "django-picklefield";
version = "3.0.1";
format = "setuptools";
# The PyPi source doesn't contain tests
src = fetchFromGitHub {
owner = "gintas";
repo = pname;
rev = "v${version}";
sha256 = "0ni7bc86k0ra4pc8zv451pzlpkhs1nyil1sq9jdb4m2mib87b5fk";
};
propagatedBuildInputs = [ django ];
# Tests are failing with Django 3.2
# https://github.com/gintas/django-picklefield/issues/58
doCheck = false;
checkPhase = ''
runHook preCheck
${python.interpreter} -m django test --settings=tests.settings
runHook postCheck
'';
meta = with lib; {
description = "A pickled object field for Django";
homepage = "https://github.com/gintas/django-picklefield";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}