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
25
pkgs/tools/virtualization/ec2instanceconnectcli/default.nix
Normal file
25
pkgs/tools/virtualization/ec2instanceconnectcli/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, boto3, cryptography }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ec2instanceconnectcli";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ boto3 cryptography ];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "ec2instanceconnectcli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command Line Interface for AWS EC2 Instance Connect";
|
||||
homepage = "https://github.com/aws/aws-ec2-instance-connect-cli";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ yurrriq ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue