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/development/python-modules/pyaxmlparser/default.nix
Normal file
25
pkgs/development/python-modules/pyaxmlparser/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ buildPythonPackage, lib, lxml, click, fetchFromGitHub, pytestCheckHook, asn1crypto }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3.27";
|
||||
pname = "pyaxmlparser";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "appknox";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-NtAsO/I1jDEv676yhAgLguQnB/kHdAqPoLt2QFWbvmw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ asn1crypto click lxml ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
|
||||
homepage = "https://github.com/appknox/pyaxmlparser";
|
||||
# Files from Androguard are licensed ASL 2.0
|
||||
license = with licenses; [ mit asl20 ];
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue