nixpkgs/pkgs/development/python-modules/pyaxmlparser/default.nix
Maximilian Bosch e7d1be840c
treewide: remove maintainership of ma27 from a few packages
Those are packages I don't use anymore for a longer time and I therefore
don't think that listing me as maintainer is a good idea. If those
should be removed now, I'd be fine with that.

SuperSandro2000 will take care of a few packages[1].

[1] https://github.com/NixOS/nixpkgs/pull/108126#pullrequestreview-560599381
2021-01-01 19:48:01 +01:00

36 lines
935 B
Nix

{ buildPythonPackage, stdenv, lxml, click, fetchFromGitHub, pytest, isPy3k }:
buildPythonPackage rec {
version = "0.3.24";
pname = "pyaxmlparser";
# the PyPI tarball doesn't ship tests.
src = fetchFromGitHub {
owner = "appknox";
repo = pname;
rev = "v${version}";
sha256 = "0fys26p7xhbnbdzp80zm6n3mragp38p08nyrsnilfgnlpi6rjpg0";
};
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; [ SuperSandro2000 ];
};
}