python.pkgs.pyaxmlparser: some files are licensed asl20

Fixes https://github.com/NixOS/nixpkgs/issues/54338.
This commit is contained in:
Robert Schütz 2019-01-20 02:58:54 +01:00
parent 5069fa0a30
commit 4e0f079064

View file

@ -28,7 +28,8 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
homepage = https://github.com/appknox/pyaxmlparser;
license = licenses.mit;
# Files from Androguard are licensed ASL 2.0
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ ma27 ];
};
}