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,22 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-subtesthack";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0711e5d04c291ac9ac6c9eff447ec2811b1d23ccdfe1417d16d4f96481efcbe6";
|
||||
};
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
# no upstream test
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Terrible plugin to set up and tear down fixtures within the test function itself";
|
||||
homepage = "https://github.com/untitaker/pytest-subtesthack";
|
||||
license = licenses.publicDomain;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue