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
36
pkgs/development/python-modules/executor/default.nix
Normal file
36
pkgs/development/python-modules/executor/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, isPy27, coloredlogs, property-manager, fasteners, pytestCheckHook, mock, virtualenv }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "executor";
|
||||
version = "23.2";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xolox";
|
||||
repo = "python-executor";
|
||||
rev = version;
|
||||
sha256 = "1mr0662c5l5zx0wjapcprp8p2xawfd0im3616df5sgv79fqzwfqs";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ coloredlogs property-manager fasteners ];
|
||||
|
||||
checkInputs = [ pytestCheckHook mock virtualenv ];
|
||||
|
||||
# ignore impure tests
|
||||
disabledTests = [
|
||||
"option"
|
||||
"retry"
|
||||
"remote"
|
||||
"ssh"
|
||||
"foreach"
|
||||
"local_context"
|
||||
"release" # meant to be ran on ubuntu to succeed
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Programmer friendly subprocess wrapper";
|
||||
homepage = "https://github.com/xolox/python-executor";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ eyjhb ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue