Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 567 B view raw
1{ buildPythonPackage, stdenv, lxml, click, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "0.3.7"; 5 pname = "pyaxmlparser"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1spwr28sc6fc3cqdx2j2zq38qx889hixl4ahhf1nphpmrl39ypxr"; 10 }; 11 12 propagatedBuildInputs = [ lxml click ]; 13 14 meta = with stdenv.lib; { 15 description = "Python3 Parser for Android XML file and get Application Name without using Androguard"; 16 homepage = https://github.com/appknox/pyaxmlparser; 17 license = licenses.mit; 18 maintainers = with maintainers; [ ma27 ]; 19 }; 20}