074c8d05ce
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.7-pyaxmlparser/versions
36 lines
922 B
Nix
36 lines
922 B
Nix
{ buildPythonPackage, stdenv, lxml, click, fetchFromGitHub, pytest, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.3.21";
|
|
pname = "pyaxmlparser";
|
|
|
|
# the PyPI tarball doesn't ship tests.
|
|
src = fetchFromGitHub {
|
|
owner = "appknox";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1bphd2vl9akk78yqvvxcz36wmr47hp3nh6xyrdc8w1avy1aby1ij";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "click==6.7" "click"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ lxml click ];
|
|
|
|
checkInputs = [ pytest ];
|
|
checkPhase = ''
|
|
py.test tests/
|
|
'';
|
|
|
|
meta = with stdenv.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; [ ma27 ];
|
|
};
|
|
}
|