summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-20 02:58:54 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-20 03:08:09 +0100
commit4e0f0790646d22f999b6845e7c27c47127428511 (patch)
tree784cc5762a165aa452d3198feff0b4219a20204d
parent5069fa0a30273e84f68691e516e6cc297624e79d (diff)
downloadnixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar.gz
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar.bz2
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar.lz
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar.xz
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.tar.zst
nixpkgs-4e0f0790646d22f999b6845e7c27c47127428511.zip
python.pkgs.pyaxmlparser: some files are licensed asl20
Fixes https://github.com/NixOS/nixpkgs/issues/54338.
-rw-r--r--pkgs/development/python-modules/pyaxmlparser/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyaxmlparser/default.nix b/pkgs/development/python-modules/pyaxmlparser/default.nix
index 0721c0d449c..c5be26bd9b7 100644
--- a/pkgs/development/python-modules/pyaxmlparser/default.nix
+++ b/pkgs/development/python-modules/pyaxmlparser/default.nix
@@ -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 ];
   };
 }