lol

auditwheel: 4.0.0 -> 5.1.2

+9 -8
+9 -8
pkgs/tools/package-management/auditwheel/default.nix
··· 8 8 9 9 python3.pkgs.buildPythonApplication rec { 10 10 pname = "auditwheel"; 11 - version = "4.0.0"; 12 - 13 - disabled = python3.pkgs.pythonOlder "3.6"; 11 + version = "5.1.2"; 12 + format = "setuptools"; 14 13 15 14 src = python3.pkgs.fetchPypi { 16 15 inherit pname version; 17 - sha256 = "03a079fe273f42336acdb5953ff5ce7578f93ca6a832b16c835fe337a1e2bd4a"; 16 + hash = "sha256-PuWDABSTHqhK9c0GXGN7ZhTvoD2biL2Pv8kk5+0B1ro="; 18 17 }; 19 18 20 19 nativeBuildInputs = with python3.pkgs; [ ··· 26 25 setuptools 27 26 ]; 28 27 29 - # integration tests require docker and networking 30 - disabledTestPaths = [ "tests/integration" ]; 31 - 32 28 checkInputs = with python3.pkgs; [ 33 29 pretend 34 30 pytestCheckHook 35 31 ]; 36 32 37 - # ensure that there are no undeclared deps 33 + # Integration tests require docker and networking 34 + disabledTestPaths = [ 35 + "tests/integration" 36 + ]; 37 + 38 + # Ensure that there are no undeclared deps 38 39 postCheck = '' 39 40 PATH= PYTHONPATH= $out/bin/auditwheel --version > /dev/null 40 41 '';