15 buildPythonPackage rec {
16 pname = "wheel-inspect";
20 disabled = pythonOlder "3.6";
22 src = fetchFromGitHub {
26 hash = "sha256-pB9Rh+A7GlxnYuka2mTSBoxpoyYCzoaMPVgsHDlpos0=";
29 propagatedBuildInputs = [
44 substituteInPlace tox.ini \
45 --replace " --cov=wheel_inspect --no-cov-on-fail" ""
46 substituteInPlace setup.cfg \
47 --replace "entry-points-txt ~= 0.1.0" "entry-points-txt >= 0.1.0"
50 pythonImportsCheck = [
56 "ignore::DeprecationWarning"
60 description = "Extract information from wheels";
61 homepage = "https://github.com/jwodder/wheel-inspect";
62 license = with licenses; [ mit ];
63 maintainers = with maintainers; [ ayazhafiz ];