9 python3.pkgs.buildPythonApplication rec {
12 format = "setuptools";
14 src = python3.pkgs.fetchPypi {
15 inherit pname version;
16 hash = "sha256-PuWDABSTHqhK9c0GXGN7ZhTvoD2biL2Pv8kk5+0B1ro=";
19 nativeBuildInputs = with python3.pkgs; [
23 propagatedBuildInputs = with python3.pkgs; [
28 checkInputs = with python3.pkgs; [
33 # Integration tests require docker and networking
38 # Ensure that there are no undeclared deps
40 PATH= PYTHONPATH= $out/bin/auditwheel --version > /dev/null
44 "--prefix" "PATH" ":" (lib.makeBinPath [ bzip2 gnutar patchelf unzip ])
48 description = "Auditing and relabeling cross-distribution Linux wheels";
49 homepage = "https://github.com/pypa/auditwheel";
50 license = with licenses; [
51 mit # auditwheel and nibabel
52 bsd2 # from https://github.com/matthew-brett/delocate
53 bsd3 # from https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py
55 maintainers = with maintainers; [ davhau ];
56 platforms = platforms.linux;