e28ebc8ad2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pyaxmlparser/versions
21 lines
568 B
Nix
21 lines
568 B
Nix
{ buildPythonPackage, stdenv, lxml, click, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.3.13";
|
|
pname = "pyaxmlparser";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1mzdrifnaky57vkmdvg0rgjss55xkxaramci3wpv4h65lmk95988";
|
|
};
|
|
|
|
propagatedBuildInputs = [ lxml click ];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
};
|
|
}
|