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:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder,
|
||||
cython, numpy, pytest, requests-toolbelt }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "streaming-form-data";
|
||||
version = "1.8.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "siddhantgoel";
|
||||
repo = "streaming-form-data";
|
||||
rev = "v${version}";
|
||||
sha256 = "1wnak8gwkc42ihgf0g9r7r858hxbqav2xdgqa8azid8v2ff6iq4d";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cython ];
|
||||
|
||||
propagatedBuildInputs = [ requests-toolbelt ];
|
||||
|
||||
checkInputs = [ numpy pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
make test
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "streaming_form_data" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Streaming parser for multipart/form-data";
|
||||
homepage = "https://github.com/siddhantgoel/streaming-form-data";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zhaofengli ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue